Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can someone please tell what I am doing wrong with the following sumif
statement? When I try each piece separatly I get a number but when I put them together Excel says something is wrong. sumif(QueryFromAccessRedo!E:E,"=#N/A",sumif(QueryFromAccessRedo!B:B,"*NR",QueryFromAc cessRedo!C:C)) Or if you could help me use SUMPRODUCT - I just can't figure it out there either. Any help would be greatly appreciated! Thanks! Shanna |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(ISNA(QueryFromAccessRedo!E1:E1000),--(ISNUMBER(FIND("NR",QueryFromAccessRedo!B1:B1000)) ),QueryFromAccessRedo!C1:C1000))
SUMPRODUCT does not accept: Full column references as in B:A, or wild card best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "ShannaD" wrote in message ... Can someone please tell what I am doing wrong with the following sumif statement? When I try each piece separatly I get a number but when I put them together Excel says something is wrong. sumif(QueryFromAccessRedo!E:E,"=#N/A",sumif(QueryFromAccessRedo!B:B,"*NR",QueryFromAc cessRedo!C:C)) Or if you could help me use SUMPRODUCT - I just can't figure it out there either. Any help would be greatly appreciated! Thanks! Shanna |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Bernard,
I really appreciate the help and I definitely didn't know that. However, when I took your equation and put it into my document, Excel still will not process it. It is giving me the dialog box that says the equation contains an error, which was the same thing it was giving me earlier. Do you have any ideas where this error could be? Thanks, Shanna "Bernard Liengme" wrote: =SUMPRODUCT(--(ISNA(QueryFromAccessRedo!E1:E1000),--(ISNUMBER(FIND("NR",QueryFromAccessRedo!B1:B1000)) ),QueryFromAccessRedo!C1:C1000)) SUMPRODUCT does not accept: Full column references as in B:A, or wild card best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "ShannaD" wrote in message ... Can someone please tell what I am doing wrong with the following sumif statement? When I try each piece separatly I get a number but when I put them together Excel says something is wrong. sumif(QueryFromAccessRedo!E:E,"=#N/A",sumif(QueryFromAccessRedo!B:B,"*NR",QueryFromAc cessRedo!C:C)) Or if you could help me use SUMPRODUCT - I just can't figure it out there either. Any help would be greatly appreciated! Thanks! Shanna |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Mismatched parenthesis ( )
Try this: =SUMPRODUCT(--(ISNA(QueryFromAccessRedo!E1:E1000)),--(ISNUMBER(FIND("NR",QueryFromAccessRedo!B1:B1000)) ),QueryFromAccessRedo!C1:C1000) Note that FIND is case sensitive. "NR" and "nr" will not match. If you don't want to test for specific case replace FIND with SEARCH. -- Biff Microsoft Excel MVP "ShannaD" wrote in message ... Bernard, I really appreciate the help and I definitely didn't know that. However, when I took your equation and put it into my document, Excel still will not process it. It is giving me the dialog box that says the equation contains an error, which was the same thing it was giving me earlier. Do you have any ideas where this error could be? Thanks, Shanna "Bernard Liengme" wrote: =SUMPRODUCT(--(ISNA(QueryFromAccessRedo!E1:E1000),--(ISNUMBER(FIND("NR",QueryFromAccessRedo!B1:B1000)) ),QueryFromAccessRedo!C1:C1000)) SUMPRODUCT does not accept: Full column references as in B:A, or wild card best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "ShannaD" wrote in message ... Can someone please tell what I am doing wrong with the following sumif statement? When I try each piece separatly I get a number but when I put them together Excel says something is wrong. sumif(QueryFromAccessRedo!E:E,"=#N/A",sumif(QueryFromAccessRedo!B:B,"*NR",QueryFromAc cessRedo!C:C)) Or if you could help me use SUMPRODUCT - I just can't figure it out there either. Any help would be greatly appreciated! Thanks! Shanna |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Wildcard with sumif | Excel Discussion (Misc queries) | |||
Nesting SUMIF formulas | Excel Worksheet Functions | |||
Nesting SUMIF | Excel Discussion (Misc queries) | |||
Sumif using wildcard | Excel Worksheet Functions | |||
SUMIF, wildcard and cell ref | Excel Worksheet Functions |