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.
Hi
I have this DAX code:
Solved! Go to Solution.
Hey @Sbudd ,
can you show the content of the table 'Table'?
In general I would not use filter and I would also use countrows:
Count of id 8 =
CALCULATE(
COUNTROWS(Table),
Table[code] = "8"
)
Hey @Sbudd ,
can you show the content of the table 'Table'?
In general I would not use filter and I would also use countrows:
Count of id 8 =
CALCULATE(
COUNTROWS(Table),
Table[code] = "8"
)