James has attended:
Excel Advanced course
Excel VBA Intro Intermediate course
Excel VBA Advanced course
Select column
In the macro that I am programing I am using the find function to find a cell in a group of sheets. When I get the cell how do I select the column that it is in?
Thanks
James
RE: Select column
James,
Activesheet.columns(Selection.column).Select
where Selection is your found cell.
/Roy MacLean