
Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
Sorry if it is not clear. But as I am entering data in the main sheet with
other sheets selected (by holding down CTRL) I am not sure of which cell I
will end in (as it depends on the amount of data that requires entry). Hence
is there a way that the other sheets will move to the correct cell too
without having to amend this in the macro.
ie. the sheet I am working on may start from coll AA to AN, whereas the
other sheets still remain on Col A currently - but I would like them to also
start from AA to AN when I select the sheet upon completion of entering the
data.
I hope this is a little clearer.
Thank you.
> follows the scrolling ???
>
[quoted text clipped - 44 lines]
> >> > >
> >> > > Regards, Nav
Don Guillett - 29 May 2008 15:49 GMT
Try it this way with the line below at the top of the module
Public mc
Sub gotoselections()
mc = ActiveCell.Column
For Each sh In ActiveWorkbook.Windows(1).SelectedSheets
MsgBox sh.Name
MsgBox mc
Application.Goto sh.Cells(1, mc) ', scroll:=True
Next
End Sub

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> Sorry if it is not clear. But as I am entering data in the main sheet
> with
[quoted text clipped - 67 lines]
>> >> > >
>> >> > > Regards, Nav
Nav - 29 May 2008 17:20 GMT
Thank you - this works a lot better.
> Try it this way with the line below at the top of the module
>
[quoted text clipped - 80 lines]
> >> >> > >
> >> >> > > Regards, Nav
Don Guillett - 29 May 2008 17:37 GMT
Glad it helped

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> Thank you - this works a lot better.
>
[quoted text clipped - 87 lines]
>> >> >> > >
>> >> >> > > Regards, Nav