I would like to set cursor/mouse pointer to cell AL2 but my program can only make this on the active worksheet
Dim a As Worksheet
For Each Sheet In ThisWorkbook.Sheets
Range("AL2").Select
Next Sheet
Could anyone explains why the code does not do what I would like to have?
Is this what you are trying?
Having said that, one should always avoid using
.Selectand.ActivateWhy do you want to select a cell? What exactly are you trying to do?