The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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) .