简体   繁体   中英

Count if "YES" in 1 field or another in Tablean

I am trying to create a calculated field in tableau that will count if one field OR another contains 'yes' - and then add the YES's together as a value.

I have tried CASE WHEN, IF, COUNTIF but I am having trouble as I have to have the OR in the calculated field.

Here is my last attempt that also failed:

COUNTIF([M-CROSSC (Cross Country)]) = 'YES' OR ([W-CROSSC (Cross Country)])= 'YES' THEN '1' END

Try this. Put the if statement inside the count().

COUNT(IF [M-CROSSC (Cross Country)] = 'YES' OR ([W-CROSSC (Cross Country)]= 'YES' THEN '1' END)

edited to remove extra ')' after each dimension.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM