janpasierb
New Member
- Joined
- Feb 12, 2013
- Messages
- 9
Hi
I have a problem. I need to use SUMPRODUCT. Let's say I have a cell with the desired formula on "AR2". I need to:
- check whether the value in the current table, in the "Day" column in the same row is equal to the value in another table ("AllBugsTable"), column "Created", same row,
- check whether the value in another table ("AllBugsTable") column "Priority" is equal to word "Blocker",
- check whether the value in another table ("AllBugsTable") column "Affects Version/s" DOES NOT contain the word "backlog" in it, same row,
- check whether the value in another table ("AllBugsTable") column "Affects Version/s" DOES NOT contain the word "archive" in it, same row,
- check whether the value in another table ("AllBugsTable") column "Fix Version/s" DOES NOT contain the word "backlog" in it, same row,
- check whether the value in another table ("AllBugsTable") column "Fix Version/s" DOES NOT contain the word "archive" in it, same row,
If all the above are true then the sumproduct should be calculated.
This is what I have so far:
but I get #VALUE back. What am I doing wrong?
Thanks
Jan
I have a problem. I need to use SUMPRODUCT. Let's say I have a cell with the desired formula on "AR2". I need to:
- check whether the value in the current table, in the "Day" column in the same row is equal to the value in another table ("AllBugsTable"), column "Created", same row,
- check whether the value in another table ("AllBugsTable") column "Priority" is equal to word "Blocker",
- check whether the value in another table ("AllBugsTable") column "Affects Version/s" DOES NOT contain the word "backlog" in it, same row,
- check whether the value in another table ("AllBugsTable") column "Affects Version/s" DOES NOT contain the word "archive" in it, same row,
- check whether the value in another table ("AllBugsTable") column "Fix Version/s" DOES NOT contain the word "backlog" in it, same row,
- check whether the value in another table ("AllBugsTable") column "Fix Version/s" DOES NOT contain the word "archive" in it, same row,
If all the above are true then the sumproduct should be calculated.
This is what I have so far:
Code:
=SUMPRODUCT(
(ISNUMBER(MATCH([@Day], AllBugsTable[Created], 0))),
(ISNUMBER(MATCH("Blocker", AllBugsTable[Priority], 0))),
(ISNA(MATCH("*backlog*", AllBugsTable[Affects Version/s], 0))),
(ISNA(MATCH("*backlog*", AllBugsTable[Fix Version/s], 0))),
(ISNA(MATCH("*archive*", AllBugsTable[Affects Version/s], 0))),
(ISNA(MATCH("*archive*", AllBugsTable[Fix Version/s], 0))))
but I get #VALUE back. What am I doing wrong?
Thanks
Jan
Last edited: