Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 15 | |
| 8 | |
| 8 | |
| 8 |