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
I am need a running total for distinct counts. Desired output for example, on Feb 10, the running total would be 290 ect. Below is the current measure that is returning the normal count per day.
Solved! Go to Solution.
Hi @Tripb44 ,
You could use SUMX() function.
sample data for your reference.
Measure 2 = SUMX(FILTER(ALL('Table'[day]),'Table'[day]<=MAX('Table'[day])),[Measure])
Best Regards,
Jay
Hi @Tripb44 ,
You could use SUMX() function.
sample data for your reference.
Measure 2 = SUMX(FILTER(ALL('Table'[day]),'Table'[day]<=MAX('Table'[day])),[Measure])
Best Regards,
Jay
Please provide sample data in usable format (not as a picture) .