Thanks everyone, but,
after 2 days of trying to find the answer in typically unhelpful "Help"
files I recorded the Macro using 'Crtl+PgUp' and 'Ctrl+PgDn' keys to navigate
between the sheets instead of the mouse... the resulting code for switching
between the sheets came out as "ActiveSheet.Previous.Select" and
"ActiveSheet.Next.Select"
I stumbled across the solution 2 minutes after posting... hahaha
Hope this helps someone else
"Tim Zych" wrote:
> The worksheet object as a Previous property, e.g.
>
> Set wks = ActiveSheet.Previous
>
>
> --
> Tim Zych
> SF, CA
>
> "I.P.Phrielie" <(E-Mail Removed)> wrote in message
> news:5942EE46-E8ED-40CE-9C51-(E-Mail Removed)...
> >I have an inventory of stock with formulae to calculate
> > "StartOfDay + Deliveries - Sales = EndOfDay"
> > I'm trying to write or record a macro to create a new worksheet and copy
> > EndOfDay from the previous days worksheet into the StartOfDay of the new
> > worksheet.
> > When I record the macro it records the actual name of the sheet ie
> > "Sheet4!E2" which does not give the incremental effect needed. Something
> > like
> > "Sheets.Previous!E2" is needed
> >
> > Cheers!
>
>
>
|