Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I tried the formula below in my database and I get a 0 as an answer.
=SUMPRODUCT((Data!B1:B20000="Access Nurses")*(Data!Q1:Q20000="Apr-08")*(L1:L20000)) Can someone tell me what I'm doing wrong and how to correct? Column B contains different vendor names, column Q contains the month of the transaction and colum L contains a subtotaled dollar amount. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMPRODUCT((Data!B1:B20000="Access
Nurses")*(Data!Q1:Q20000="Apr-08"),(L1:L20000)) hth -- regards from Brazil Thanks in advance for your feedback. Marcelo "MadWoman" escreveu: I tried the formula below in my database and I get a 0 as an answer. =SUMPRODUCT((Data!B1:B20000="Access Nurses")*(Data!Q1:Q20000="Apr-08")*(L1:L20000)) Can someone tell me what I'm doing wrong and how to correct? Column B contains different vendor names, column Q contains the month of the transaction and colum L contains a subtotaled dollar amount. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Are the months of transaction really XL dates? If so try:
=SUMPRODUCT((Data!B1:B20000="Access Nurses")*(MONTH(Data!Q1:Q20000)=4)*L1:L20000) -- HTH Sandy In Perth, the ancient capital of Scotland and the crowning place of kings Replace @mailinator.com with @tiscali.co.uk "MadWoman" wrote in message ... I tried the formula below in my database and I get a 0 as an answer. =SUMPRODUCT((Data!B1:B20000="Access Nurses")*(Data!Q1:Q20000="Apr-08")*(L1:L20000)) Can someone tell me what I'm doing wrong and how to correct? Column B contains different vendor names, column Q contains the month of the transaction and colum L contains a subtotaled dollar amount. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Tue, 29 Jul 2008 14:13:00 -0700, MadWoman
wrote: I tried the formula below in my database and I get a 0 as an answer. =SUMPRODUCT((Data!B1:B20000="Access Nurses")*(Data!Q1:Q20000="Apr-08")*(L1:L20000)) Can someone tell me what I'm doing wrong and how to correct? Column B contains different vendor names, column Q contains the month of the transaction and colum L contains a subtotaled dollar amount. If the three columns are all in the same worksheet, which is not the same sheet as where the formula is, then there is a missing Data! before L1 in the last paranthesis. Hope this helps / Lars-Åke |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sumif for multi conditions. i.e sumif(A1:A10,"Jon" and B1:B10,"A" | Excel Worksheet Functions | |||
Embedding a Sumif in a sumif | Excel Worksheet Functions | |||
sumif help... | Excel Discussion (Misc queries) | |||
nested sumif or sumif with two criteria | Excel Worksheet Functions | |||
SUMIF - Range name to used for the "sum_range" portion of a SUMIF function | Excel Worksheet Functions |