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 need to find the Events Delta (Delta Column in picture below) from the last 8 days, based on my measure calculation created for # of Events and Create Date Difference expression, which calculates the difference in days between my create date and today.
Example of wanted outcome:
Current Errored Delta Forumla:
Thank you in advance for your help!
Solved! Go to Solution.
Hi @Coffee2023 ,
Unable to see the details of your error .
I assumed some data:
Use the following DAX expression to create a measure
Delta =
VAR _result = COUNTROWS(FILTER('vw_table','vw_table'[COTypeName] = "Event" && 'vw_table'[Create Date Difference] < 8))
RETURN IF(ISBLANK(_result),0,_result)
Final output
Best Regards,
Wenbin Zhou
Hi @Coffee2023 ,
Unable to see the details of your error .
I assumed some data:
Use the following DAX expression to create a measure
Delta =
VAR _result = COUNTROWS(FILTER('vw_table','vw_table'[COTypeName] = "Event" && 'vw_table'[Create Date Difference] < 8))
RETURN IF(ISBLANK(_result),0,_result)
Final output
Best Regards,
Wenbin Zhou