I have this code
Set rCell = Workbooks("NortheastArea2003.xls"
.ActiveSheet.Range("B:B"
.Find(what:=ActiveCell, LookAt:=xlPart, SearchOrder:=xlColumns)
this searches NortheastArea2003 for the contents of the activecell in the active workbook
then when i find the activecell, i want to conduct another find in NortheastArea2003, not the activeworkbook, how do i do that? i tried
Cells.Find(what:="AT&T", After:=rCell, LookAt:=xlWhole, SearchOrder:=xlByRows).Activate
I dont know why its not working, doesn't rcell already contain the range for where to start looking?? thanks!
Set rCell = Workbooks("NortheastArea2003.xls"
this searches NortheastArea2003 for the contents of the activecell in the active workbook
then when i find the activecell, i want to conduct another find in NortheastArea2003, not the activeworkbook, how do i do that? i tried
Cells.Find(what:="AT&T", After:=rCell, LookAt:=xlWhole, SearchOrder:=xlByRows).Activate
I dont know why its not working, doesn't rcell already contain the range for where to start looking?? thanks!