The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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) .