Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |