HI
I'm having issues with a COUNTIF formula where i have it check certain columns for mulltiple values. Although its a valid formula the result is incorrect.
The formula is =SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],{"DOMAIN A","DOMAIN B"},Table316[Sec/Crit Needed],">10"))
The resultant reply should be 44 but this comes back as 1.
If I split the formula it brings back the correct values which then sum upto the expected value of 44
=SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],"DOMAINA",Table316[Sec/Crit Needed],">10")) Result = 0
=SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],"DOMAINB",Table316[Sec/Crit Needed],">10")) Result = 44
I've worked around it so far by adding the 2 formulas together as below but I can't see why the top formula wouldn't work. When I use the same formula to count colums with a certian tier "Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"}" it works fine.
Current Fix
=SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],{"DOMAIN A"},Table316[Sec/Crit Needed],">10"))+SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],{"DOMAIN B"},Table316[Sec/Crit Needed],">10"))
I'm having issues with a COUNTIF formula where i have it check certain columns for mulltiple values. Although its a valid formula the result is incorrect.
The formula is =SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],{"DOMAIN A","DOMAIN B"},Table316[Sec/Crit Needed],">10"))
The resultant reply should be 44 but this comes back as 1.
If I split the formula it brings back the correct values which then sum upto the expected value of 44
=SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],"DOMAINA",Table316[Sec/Crit Needed],">10")) Result = 0
=SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],"DOMAINB",Table316[Sec/Crit Needed],">10")) Result = 44
I've worked around it so far by adding the 2 formulas together as below but I can't see why the top formula wouldn't work. When I use the same formula to count colums with a certian tier "Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"}" it works fine.
Current Fix
=SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],{"DOMAIN A"},Table316[Sec/Crit Needed],">10"))+SUM(COUNTIFS(Table316[Tier],{"Tier 1","Tier 2","Tier 3","Tier 4"},Table316[Zone],{"DOMAIN B"},Table316[Sec/Crit Needed],">10"))