Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
I tried using
NewMeasure = CALCULATE(COUNT(TableName[ColumnName]) , (TableName[ColumnName])="Insert Word Here")
Yet for some reason it doesn't register the table name/column name after the commma. Would appreciate any input.
@Anonymous ,
Have you solved your issue by now? If you have, could you please help mark the correct answer to finish the thread? Your contribution will be much appreciated.
Regards,
Jimmy Tao
@Anonymous,
What's the specific error message? You may also modify your measure using DAX below:
NewMeasure =
CALCULATE (
COUNT ( TableName[ColumnName] ),
FILTER ( TableName, TableName[ColumnName] = "Insert Word Here" )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Have you tried COUNTX ?
It should look something like: NewMeasure = COUNTX(TableName , [ColumnName]="Insert Word Here")
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!