The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I want to count column Status2020 not equal B and Status2021 = B
I use the formula as below.
COUNT(('Before 2021'[Status(2020)]),
Solved! Go to Solution.
Hi @Anonymous
COUNTROWS (
FILTER (
'Before 2021',
'Before 2021'[Status(2020)] <> "B" && 'Before 2021'[Status(2021)] = "B"
)
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Anonymous
COUNTROWS (
FILTER (
'Before 2021',
'Before 2021'[Status(2020)] <> "B" && 'Before 2021'[Status(2021)] = "B"
)
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers