![]() |
Dsum or Sumif Help!!!
I have spreadsheet which has 3 columns
A B C 1 Acct No Account Amount 2 D12 XX1 732.50 3 XX2 10,451.12 4 D13 XX3 52,741.51 5 D14 XX4 289.86 6 XX5 7,654.12 7 D15 XX6 95,785.32 8 XX7 2,367.49 9 XX8 32,965.74 10 D16 XX9 65,874.36 What i would like to do is produce 2 diferent sum amount based on a diferent criteria. firstly: I want to sum column C only the amounts where there is no account no. basically =sumif(a2:c10, "if the corresponding value in column a is blank",c2:c10) secondly: sum the amounts in column c in between £5,000 and £50,000 Thanks In advance Hervinder |
Dsum or Sumif Help!!!
=SUMPRODUCT(--(A2:A10=""),C2:C10)
=SUMIF(C2:C10,"<50000")-SUMIF(C2:C10,"<5000") "Hervinder" wrote: I have spreadsheet which has 3 columns A B C 1 Acct No Account Amount 2 D12 XX1 732.50 3 XX2 10,451.12 4 D13 XX3 52,741.51 5 D14 XX4 289.86 6 XX5 7,654.12 7 D15 XX6 95,785.32 8 XX7 2,367.49 9 XX8 32,965.74 10 D16 XX9 65,874.36 What i would like to do is produce 2 diferent sum amount based on a diferent criteria. firstly: I want to sum column C only the amounts where there is no account no. basically =sumif(a2:c10, "if the corresponding value in column a is blank",c2:c10) secondly: sum the amounts in column c in between £5,000 and £50,000 Thanks In advance Hervinder |
Dsum or Sumif Help!!!
=SUMPRODUCT(--(A2:A10=""),--(C2:C10))
=SUMPRODUCT(--(C2:C10=5000),--(C2:C10<=50000)*(C2:C10)) "Sloth" wrote: =SUMPRODUCT(--(A2:A10=""),C2:C10) =SUMIF(C2:C10,"<50000")-SUMIF(C2:C10,"<5000") "Hervinder" wrote: I have spreadsheet which has 3 columns A B C 1 Acct No Account Amount 2 D12 XX1 732.50 3 XX2 10,451.12 4 D13 XX3 52,741.51 5 D14 XX4 289.86 6 XX5 7,654.12 7 D15 XX6 95,785.32 8 XX7 2,367.49 9 XX8 32,965.74 10 D16 XX9 65,874.36 What i would like to do is produce 2 diferent sum amount based on a diferent criteria. firstly: I want to sum column C only the amounts where there is no account no. basically =sumif(a2:c10, "if the corresponding value in column a is blank",c2:c10) secondly: sum the amounts in column c in between £5,000 and £50,000 Thanks In advance Hervinder |
Dsum or Sumif Help!!!
=SUMIF(A2:A10,"",C2:C10)
=SUMPROUCT(--(C2:C10=5000),--SUMIF(C2:C10<=50000),C2:C10) -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Sloth" wrote in message ... =SUMPRODUCT(--(A2:A10=""),C2:C10) =SUMIF(C2:C10,"<50000")-SUMIF(C2:C10,"<5000") "Hervinder" wrote: I have spreadsheet which has 3 columns A B C 1 Acct No Account Amount 2 D12 XX1 732.50 3 XX2 10,451.12 4 D13 XX3 52,741.51 5 D14 XX4 289.86 6 XX5 7,654.12 7 D15 XX6 95,785.32 8 XX7 2,367.49 9 XX8 32,965.74 10 D16 XX9 65,874.36 What i would like to do is produce 2 diferent sum amount based on a diferent criteria. firstly: I want to sum column C only the amounts where there is no account no. basically =sumif(a2:c10, "if the corresponding value in column a is blank",c2:c10) secondly: sum the amounts in column c in between £5,000 and £50,000 Thanks In advance Hervinder |
All times are GMT +1. The time now is 05:18 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com