Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Vlookup - multiple tabs

I have a workbook with a large number of worksheets; on each worksheet is an
array of data. I'm creating a summary worksheet to sum all of the other
worksheets. The problem is that all of the worksheets aren't aligned....the
data to be added is all in column "E" but on its on a different line on every
sheet.

Each of the data lines does have a common identifier so that I can use the
V-lookup formula to find the data to be added, but with so many sheets, it
would be a very, very long formula.

Question, if I make all of the data arrays the same size, can I use the
Vlookup formula across multiple worksheets....if "yes", how?

If not Vlookup, is there another means to do it?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Vlookup - multiple tabs

If you realign your data on each sheet, will the values have the same cell
address on each sheet?

You could create a formula similar to this if all the data was in say D50:

=Sum (Sheet1:Sheet30!D50)

Post back if your question is more complicated.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"jkiser" wrote in message
...
I have a workbook with a large number of worksheets; on each worksheet is
an
array of data. I'm creating a summary worksheet to sum all of the other
worksheets. The problem is that all of the worksheets aren't
aligned....the
data to be added is all in column "E" but on its on a different line on
every
sheet.

Each of the data lines does have a common identifier so that I can use the
V-lookup formula to find the data to be added, but with so many sheets, it
would be a very, very long formula.

Question, if I make all of the data arrays the same size, can I use the
Vlookup formula across multiple worksheets....if "yes", how?

If not Vlookup, is there another means to do it?

Thanks



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Vlookup - multiple tabs

Yes....I'm trying to avoid having to align the data because there are so many
sheets and so much data; I'd be adding a bunch of blank lines. I'm hoping
there's a way to do it with a formula.

"RagDyer" wrote:

If you realign your data on each sheet, will the values have the same cell
address on each sheet?

You could create a formula similar to this if all the data was in say D50:

=Sum (Sheet1:Sheet30!D50)

Post back if your question is more complicated.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"jkiser" wrote in message
...
I have a workbook with a large number of worksheets; on each worksheet is
an
array of data. I'm creating a summary worksheet to sum all of the other
worksheets. The problem is that all of the worksheets aren't
aligned....the
data to be added is all in column "E" but on its on a different line on
every
sheet.

Each of the data lines does have a common identifier so that I can use the
V-lookup formula to find the data to be added, but with so many sheets, it
would be a very, very long formula.

Question, if I make all of the data arrays the same size, can I use the
Vlookup formula across multiple worksheets....if "yes", how?

If not Vlookup, is there another means to do it?

Thanks




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Vlookup - multiple tabs

If your data is setup in such a way that a single SUMIF() function would
work if you inserted it into every sheet, you could then place that Sumif in
a location where each sheet would have their totals in exactly the same
cell.

Don't forget, you can group your sheets and insert that formula in every
sheet with a *single* entry.

If this doesn't sound plausible, post back with your data configuration, and
specific examples of what you're looking to accomplish.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"jkiser" wrote in message
...
Yes....I'm trying to avoid having to align the data because there are so

many
sheets and so much data; I'd be adding a bunch of blank lines. I'm hoping
there's a way to do it with a formula.

"RagDyer" wrote:

If you realign your data on each sheet, will the values have the same

cell
address on each sheet?

You could create a formula similar to this if all the data was in say

D50:

=Sum (Sheet1:Sheet30!D50)

Post back if your question is more complicated.
--
HTH,

RD


--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------

-
"jkiser" wrote in message
...
I have a workbook with a large number of worksheets; on each worksheet

is
an
array of data. I'm creating a summary worksheet to sum all of the

other
worksheets. The problem is that all of the worksheets aren't
aligned....the
data to be added is all in column "E" but on its on a different line

on
every
sheet.

Each of the data lines does have a common identifier so that I can use

the
V-lookup formula to find the data to be added, but with so many

sheets, it
would be a very, very long formula.

Question, if I make all of the data arrays the same size, can I use

the
Vlookup formula across multiple worksheets....if "yes", how?

If not Vlookup, is there another means to do it?

Thanks





  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Vlookup - multiple tabs

Hi,

You may refer to Question 9 on the following link -
http://ashishmathur.com/knowledgebaseII.aspx

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"jkiser" wrote in message
...
I have a workbook with a large number of worksheets; on each worksheet is
an
array of data. I'm creating a summary worksheet to sum all of the other
worksheets. The problem is that all of the worksheets aren't
aligned....the
data to be added is all in column "E" but on its on a different line on
every
sheet.

Each of the data lines does have a common identifier so that I can use the
V-lookup formula to find the data to be added, but with so many sheets, it
would be a very, very long formula.

Question, if I make all of the data arrays the same size, can I use the
Vlookup formula across multiple worksheets....if "yes", how?

If not Vlookup, is there another means to do it?

Thanks




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Vlookup - multiple tabs

I'm going to have to study this one for a while to see how it works....looks
like it has promise.

"jkiser" wrote:

I have a workbook with a large number of worksheets; on each worksheet is an
array of data. I'm creating a summary worksheet to sum all of the other
worksheets. The problem is that all of the worksheets aren't aligned....the
data to be added is all in column "E" but on its on a different line on every
sheet.

Each of the data lines does have a common identifier so that I can use the
V-lookup formula to find the data to be added, but with so many sheets, it
would be a very, very long formula.

Question, if I make all of the data arrays the same size, can I use the
Vlookup formula across multiple worksheets....if "yes", how?

If not Vlookup, is there another means to do it?

Thanks

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vlookup equation on multiple tabs bongiman Excel Discussion (Misc queries) 7 January 28th 10 11:44 PM
Vlookup equation for multiple tabs bongiman Excel Discussion (Misc queries) 1 February 10th 09 03:59 PM
vlookup multiple tabs yhoy Excel Discussion (Misc queries) 4 January 12th 09 05:06 AM
How do I use VLOOKUP to ref multiple workbooks with multiple tabs? JackieW Excel Discussion (Misc queries) 2 April 11th 06 05:32 PM
Vlookup across multiple tabs Hirsch Excel Worksheet Functions 2 July 20th 05 07:42 PM


All times are GMT +1. The time now is 12:03 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"