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
Hello,
I need to create a DAX measure to compute the total volume over the past 12 months from a specific date, cumulatively. This date is different for each user, and is represented in the LastProofOfFunds column.
Solved! Go to Solution.
Hi @Anonymous ,
Do you have the date column and the corresponded volume value in the table? If so you could refer the following measure.
Total Volume = CALCULATE(SUM('Table'[Volume]),FILTER(ALLSELECTED('Table'),'Table'[date]<=SELECTEDVALUE('Table'[LastProofOfFunds ])&&'Table'[date]>=EDATE(SELECTEDVALUE('Table'[LastProofOfFunds ]),-12)))
Best Regards,
Jay
Hi @Anonymous ,
Do you have the date column and the corresponded volume value in the table? If so you could refer the following measure.
Total Volume = CALCULATE(SUM('Table'[Volume]),FILTER(ALLSELECTED('Table'),'Table'[date]<=SELECTEDVALUE('Table'[LastProofOfFunds ])&&'Table'[date]>=EDATE(SELECTEDVALUE('Table'[LastProofOfFunds ]),-12)))
Best Regards,
Jay
Hi,
Here is an example.
Start data:
Dax:
Hopefully this helps and if it does, consider accepting this as a solution!
Proud to be a Super User!
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |