I wish to open a spreadsheet file and have the cursor be in the very 1st cell or not even show the cursor at all. How can this be done?
Thanks,
Blake
Printable View
I wish to open a spreadsheet file and have the cursor be in the very 1st cell or not even show the cursor at all. How can this be done?
Thanks,
Blake
Using the Workbook_Open sub should do it. In VBE, place the following on ThisWorkBook:
VB Code:
Private Sub Workbook_Open() Range("A1").Select End Sub
VBAhack
Thanks hack....that worked!!!!!