Forum Discussion
Anonymous
3 years agoNot applicable
Count a Boolean column based on another column Value
I'm trying to create a count of the Article Shared column based on what's in the Case Status column. I need to know how many Closed cases have a True in the Article Shared column. Is this somethi...
- Anonymous3 years ago
Try this,
Closed Cases = COUNTROWS( FILTER( Sample_Data, Sample_Data[Case Status] = "Closed" && Sample_Data[Article Share] = TRUE() ) )
Anonymous
3 years agoNot applicable
Try this,
Closed Cases =
COUNTROWS(
FILTER(
Sample_Data,
Sample_Data[Case Status] = "Closed"
&&
Sample_Data[Article Share] = TRUE()
)
)
Anonymous
3 years agoNot applicable
Perfect. Thank you so much for your help