Excel VBA select cell to the left
Solved
alec.po
Posted messages
134
Status
Member
-
ya -
ya -
Hello,
I just need a little help on this point; I would like a VBA code to select the cell immediately to the left of the currently selected cell.
For example:
If B1 is selected, select A1
If D4 is selected, select C4
Thank you
I just need a little help on this point; I would like a VBA code to select the cell immediately to the left of the currently selected cell.
For example:
If B1 is selected, select A1
If D4 is selected, select C4
Thank you
Configuration: Windows Vista Firefox 2.0.0.13
it would rather be:
Selection.Offset(0, -1).Select