I am looking for the function to use to be able to calculate data using the
prior worksheet, vs an absolute function using the same sheet.
I am looking for the function to use to be able to calculate data using the
prior worksheet, vs an absolute function using the same sheet.
Excel doesn't support relative sheet referencing; that is, you
can't write a formula like
=PreviousSheet!A1
You'll either have to hard code the previous sheet's name, or use
VBA to get the name of the previous sheet and incorporate that in
to an INDIRECT function. E.g.,
Function PreviousSheet() As String
PreviousSheet = Application.Caller.Parent.Previous.Next.Name
End Function
=INDIRECT(PreviousSheet & "!A1")
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
"travchev" <travchev@discussions.microsoft.com> wrote in message
news:24C4FCB7-FF81-4E29-87B5-D573E9F6E406@microsoft.com...
>I am looking for the function to use to be able to calculate
>data using the
> prior worksheet, vs an absolute function using the same sheet.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks