Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » excel training onsite - Excel VBA
excel training onsite - Excel VBA
Resolved · Low Priority · Version Standard
Adrian has attended:
No courses
Excel VBA
At the beginning of a macro I want to set the ActiveCell to a cell containing a particular string of text. How can I do this. I have tried:
activesheet.find(string)
as the first line of the macro but to no avail. Any help much appreciated
For upcoming training course dates see: Pricing & availability
RE: Excel VBA
Hi Adrian
A suggestion is:
Cells.Find("string").Activate
This should search the page you have selected and move to the cell containing the string.
Hope this helps.
RE: Excel VBA
Vicky,
Many thanks. There are days when I try to be intelligent. Yesterday was not one of them!
|
|
