Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |