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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have the below error message, what should I do to enable this works?
Thanks
Solved! Go to Solution.
Then I think you're using the wrong column, you're comparing a revenue value to a text representation of a year month.
A better approach would be to create a proper date table, marked as a date table, then you can link that to your fact table and use year or year month filters on the date table in your measures.
It looks like the [Assay Jan 24] column is a date and you are comparing it to text. Try
Assay Cumulative Count =
CALCULATE (
COUNTROWS ( 'Exent funnel by product' ),
YEAR ( 'Exent funnel by product'[Assay Jan 24] ) = 2024
)
Then I think you're using the wrong column, you're comparing a revenue value to a text representation of a year month.
A better approach would be to create a proper date table, marked as a date table, then you can link that to your fact table and use year or year month filters on the date table in your measures.