Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi! In my workbook:
Column A = the days of the week - Monday, Tuesday, etc. (but Monday may be listed from A1:A10, and Tuesday from A11:A15) Column B = Date (of Monday, Tuesday, etc) Column C = Job Titles (text) Range D:T contain numerical values I want to write a formula that sums all the values in column D that also contain Monday in column A and a specific value in column C. Is there any formula out there that would accomplish this? I've tried SUMIF, but it isn't working for me; I may be writing it wrong. Any ideas? |
#2
![]() |
|||
|
|||
![]()
many people use sumproduct in this type of problem
=sumproduct(--(A1:A1000="Monday"),--(C1:C1000=criteria),D1:D1000) the arrays in each section must be the same size but can't be the shorthand for full columns [A:A wont work] the --() makes the logic true false become numeric 1 0 "redb" wrote: Hi! In my workbook: Column A = the days of the week - Monday, Tuesday, etc. (but Monday may be listed from A1:A10, and Tuesday from A11:A15) Column B = Date (of Monday, Tuesday, etc) Column C = Job Titles (text) Range D:T contain numerical values I want to write a formula that sums all the values in column D that also contain Monday in column A and a specific value in column C. Is there any formula out there that would accomplish this? I've tried SUMIF, but it isn't working for me; I may be writing it wrong. Any ideas? |
#3
![]() |
|||
|
|||
![]() "redb" wrote: Hi! In my workbook: Column A = the days of the week - Monday, Tuesday, etc. (but Monday may be listed from A1:A10, and Tuesday from A11:A15) Column B = Date (of Monday, Tuesday, etc) Column C = Job Titles (text) Range D:T contain numerical values I want to write a formula that sums all the values in column D that also contain Monday in column A and a specific value in column C. Is there any formula out there that would accomplish this? I've tried SUMIF, but it isn't working for me; I may be writing it wrong. Any ideas? Try something like =SUMPRODUCT(--($A$1:$A$18="Mon")*($C$1:$C$18=C1)*($D$1:$D$18)) Peter |
#4
![]() |
|||
|
|||
![]() redb Wrote: Hi! In my workbook: Column A = the days of the week - Monday, Tuesday, etc. (but Monday may be listed from A1:A10, and Tuesday from A11:A15) Column B = Date (of Monday, Tuesday, etc) Column C = Job Titles (text) Range D:T contain numerical values I want to write a formula that sums all the values in column D that also contain Monday in column A and a specific value in column C. Is there any formula out there that would accomplish this? I've tried SUMIF, but it isn't working for me; I may be writing it wrong. Any ideas? Try this ... *=sumproduct((A1:A100="Monday")*(C1:C100="whatever specific value you choose")*(D1:D100))* -- BenjieLop ------------------------------------------------------------------------ BenjieLop's Profile: http://www.excelforum.com/member.php...o&userid=11019 View this thread: http://www.excelforum.com/showthread...hreadid=472562 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula help - sumif (possibly) | Excel Discussion (Misc queries) | |||
Modify SumIF... Array Formula | Excel Worksheet Functions | |||
Standard sumif formula not recognised | Excel Worksheet Functions | |||
IF & VLOOKUP FORMULA | Excel Worksheet Functions | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions |