Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 516
Default Summing multiple account #s in one cell, by referencing

Question involves summing a variety of accounts in one cell, on a different
worksheet (In this example, say Sheet 3). In Sheet1, I have a list of
account #s and corresponding values in two columns (my raw data). In sheet
2, I would like to build a special database for the future of which accounts
I would like to pick from Sheet 1. Then, in Sheet 3, I would like to
reference Sheets 1 and 2, by referencing those account numbers in Sheet 2 I
want, and seeing the total values from Sheet 1 on Sheet 3, in just one cell.
I tried sumIFs functions, but it doesn't seem like I can have multiple
"criteria" values from Sheet 2 (I can just reference one cell, but I want to
total multiple accounts). Is this possible to do in one simple formula that
can just reference the sum range (Sheet 1 column C, the criteria range (Sheet
1 column A) and the "multiple critera" (Sheet 2, column A)???


Say I want to sum in one cell, on Sheet 3, the total value of accounts 10,
12, 13 (by specifying only those accounts in the formula from Sheet 2), which
would give the value of 85 (15 + 20 + 50) in one cell on Sheet 3:

Description Account#s / Values / Only account #s I want to sum

Worksheet 1 / 1 / 2

Row / Column A / C / A
1 10 15 10
2 11 30 12
3 12 20 13
4 13 50
5 14 40
6 15 30

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Summing multiple account #s in one cell, by referencing

the DSUM() function will do what you want.

Make sure you have column headers for the account #s and the data, and use
the same column header on sheet 2 for your list of accounts


"Matt" wrote:

Question involves summing a variety of accounts in one cell, on a different
worksheet (In this example, say Sheet 3). In Sheet1, I have a list of
account #s and corresponding values in two columns (my raw data). In sheet
2, I would like to build a special database for the future of which accounts
I would like to pick from Sheet 1. Then, in Sheet 3, I would like to
reference Sheets 1 and 2, by referencing those account numbers in Sheet 2 I
want, and seeing the total values from Sheet 1 on Sheet 3, in just one cell.
I tried sumIFs functions, but it doesn't seem like I can have multiple
"criteria" values from Sheet 2 (I can just reference one cell, but I want to
total multiple accounts). Is this possible to do in one simple formula that
can just reference the sum range (Sheet 1 column C, the criteria range (Sheet
1 column A) and the "multiple critera" (Sheet 2, column A)???


Say I want to sum in one cell, on Sheet 3, the total value of accounts 10,
12, 13 (by specifying only those accounts in the formula from Sheet 2), which
would give the value of 85 (15 + 20 + 50) in one cell on Sheet 3:

Description Account#s / Values / Only account #s I want to sum

Worksheet 1 / 1 / 2

Row / Column A / C / A
1 10 15 10
2 11 30 12
3 12 20 13
4 13 50
5 14 40
6 15 30

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 516
Default Summing multiple account #s in one cell, by referencing

OK, many thanks! Any way you could possible right the equation for me using
the example I wrote (If I was clear enough?). I can't wrap my head around
how to use this function yet...

Thanks

"Duke Carey" wrote:

the DSUM() function will do what you want.

Make sure you have column headers for the account #s and the data, and use
the same column header on sheet 2 for your list of accounts


"Matt" wrote:

Question involves summing a variety of accounts in one cell, on a different
worksheet (In this example, say Sheet 3). In Sheet1, I have a list of
account #s and corresponding values in two columns (my raw data). In sheet
2, I would like to build a special database for the future of which accounts
I would like to pick from Sheet 1. Then, in Sheet 3, I would like to
reference Sheets 1 and 2, by referencing those account numbers in Sheet 2 I
want, and seeing the total values from Sheet 1 on Sheet 3, in just one cell.
I tried sumIFs functions, but it doesn't seem like I can have multiple
"criteria" values from Sheet 2 (I can just reference one cell, but I want to
total multiple accounts). Is this possible to do in one simple formula that
can just reference the sum range (Sheet 1 column C, the criteria range (Sheet
1 column A) and the "multiple critera" (Sheet 2, column A)???


Say I want to sum in one cell, on Sheet 3, the total value of accounts 10,
12, 13 (by specifying only those accounts in the formula from Sheet 2), which
would give the value of 85 (15 + 20 + 50) in one cell on Sheet 3:

Description Account#s / Values / Only account #s I want to sum

Worksheet 1 / 1 / 2

Row / Column A / C / A
1 10 15 10
2 11 30 12
3 12 20 13
4 13 50
5 14 40
6 15 30

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Summing multiple account #s in one cell, by referencing

=DSUM(Sheet1!B1:C7,Sheet1!C1,Sheet2!A1:A4)

where
- Sheet1!B1:C7 contains your data - including the column headers
- Sheet1!C1 is the column header for the data to be summed
- Sheet2!A1:A4 contains the same column header as Sheet1!B1 plus the list
of accounts to sum


"Matt" wrote:

OK, many thanks! Any way you could possible right the equation for me using
the example I wrote (If I was clear enough?). I can't wrap my head around
how to use this function yet...

Thanks

"Duke Carey" wrote:

the DSUM() function will do what you want.

Make sure you have column headers for the account #s and the data, and use
the same column header on sheet 2 for your list of accounts


"Matt" wrote:

Question involves summing a variety of accounts in one cell, on a different
worksheet (In this example, say Sheet 3). In Sheet1, I have a list of
account #s and corresponding values in two columns (my raw data). In sheet
2, I would like to build a special database for the future of which accounts
I would like to pick from Sheet 1. Then, in Sheet 3, I would like to
reference Sheets 1 and 2, by referencing those account numbers in Sheet 2 I
want, and seeing the total values from Sheet 1 on Sheet 3, in just one cell.
I tried sumIFs functions, but it doesn't seem like I can have multiple
"criteria" values from Sheet 2 (I can just reference one cell, but I want to
total multiple accounts). Is this possible to do in one simple formula that
can just reference the sum range (Sheet 1 column C, the criteria range (Sheet
1 column A) and the "multiple critera" (Sheet 2, column A)???


Say I want to sum in one cell, on Sheet 3, the total value of accounts 10,
12, 13 (by specifying only those accounts in the formula from Sheet 2), which
would give the value of 85 (15 + 20 + 50) in one cell on Sheet 3:

Description Account#s / Values / Only account #s I want to sum

Worksheet 1 / 1 / 2

Row / Column A / C / A
1 10 15 10
2 11 30 12
3 12 20 13
4 13 50
5 14 40
6 15 30

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 516
Default Summing multiple account #s in one cell, by referencing

Almost there! I put in this function (so you can see the account#s or Sheets
2 and 3, values in Sheet two column I).

=DSUM(Sheet2!A2:I50,Sheet2!I2,Sheet3!A2:A50)

But the function result, no matter what accounts I write in my range in
Sheet 3, is just the total sum of the range of A2:A50. It doesn't change no
matter what account numbers I write there?



"Duke Carey" wrote:

=DSUM(Sheet1!B1:C7,Sheet1!C1,Sheet2!A1:A4)

where
- Sheet1!B1:C7 contains your data - including the column headers
- Sheet1!C1 is the column header for the data to be summed
- Sheet2!A1:A4 contains the same column header as Sheet1!B1 plus the list
of accounts to sum


"Matt" wrote:

OK, many thanks! Any way you could possible right the equation for me using
the example I wrote (If I was clear enough?). I can't wrap my head around
how to use this function yet...

Thanks

"Duke Carey" wrote:

the DSUM() function will do what you want.

Make sure you have column headers for the account #s and the data, and use
the same column header on sheet 2 for your list of accounts


"Matt" wrote:

Question involves summing a variety of accounts in one cell, on a different
worksheet (In this example, say Sheet 3). In Sheet1, I have a list of
account #s and corresponding values in two columns (my raw data). In sheet
2, I would like to build a special database for the future of which accounts
I would like to pick from Sheet 1. Then, in Sheet 3, I would like to
reference Sheets 1 and 2, by referencing those account numbers in Sheet 2 I
want, and seeing the total values from Sheet 1 on Sheet 3, in just one cell.
I tried sumIFs functions, but it doesn't seem like I can have multiple
"criteria" values from Sheet 2 (I can just reference one cell, but I want to
total multiple accounts). Is this possible to do in one simple formula that
can just reference the sum range (Sheet 1 column C, the criteria range (Sheet
1 column A) and the "multiple critera" (Sheet 2, column A)???


Say I want to sum in one cell, on Sheet 3, the total value of accounts 10,
12, 13 (by specifying only those accounts in the formula from Sheet 2), which
would give the value of 85 (15 + 20 + 50) in one cell on Sheet 3:

Description Account#s / Values / Only account #s I want to sum

Worksheet 1 / 1 / 2

Row / Column A / C / A
1 10 15 10
2 11 30 12
3 12 20 13
4 13 50
5 14 40
6 15 30



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
How to lookup multiple values and summing them up in one cell Amr Abul Laban Excel Worksheet Functions 7 April 19th 10 02:57 PM
Summing across multiple sheets using a changeable reference cell ajnmx Excel Worksheet Functions 2 June 11th 08 07:29 PM
Referencing the same cell on multiple sheets danc Excel Discussion (Misc queries) 1 March 6th 08 12:13 AM
summing the same cell in multiple workbooks [email protected] Excel Worksheet Functions 2 January 25th 08 09:19 PM
Summing same cell/cells from multiple sheets Dave Excel Worksheet Functions 1 February 11th 05 06:52 PM


All times are GMT +1. The time now is 07:59 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"