Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Solved! Go to Solution.
You should use || or {} instead of OR.
Remaining tasks =
CALCULATE(
COUNTROWS('Data source 1'),
KEEPFILTERS('Data source 1'[State] IN {"New", "Active"})
)
Remaining tasks =
CALCULATE(
COUNTROWS('Data source 1'),
KEEPFILTERS('Data source 1'[State] = "New" || 'Data source 1'[State] = "Active")
)
You should use || or {} instead of OR.
Remaining tasks =
CALCULATE(
COUNTROWS('Data source 1'),
KEEPFILTERS('Data source 1'[State] IN {"New", "Active"})
)
Remaining tasks =
CALCULATE(
COUNTROWS('Data source 1'),
KEEPFILTERS('Data source 1'[State] = "New" || 'Data source 1'[State] = "Active")
)