VBA Range select problem
Posted by Ian Mac on November 16, 2001 6:35 AM
Can't get this to work,
I have a button which will goto a worksheet based on the value in a cell. That's fine
Private Sub CommandButton1_Click()
Sheets(Range("f5").Value).Activate
End Sub
The problem is I then wish to activate/select a particular cell so the user will be able to see the sheet from the begining. That cell being b1 (as a1 is hidden)
I just can't seem to get anything to do it for me
thanks
Ian Mac