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.
Hello
I want to find the running total of the mesure which i created , but it is giving me same value as measure. in Measure1 i counted the product then i want the runnig total of this product in meaues2 .
Meausre1=
Month | Measure1 | Measure2 | |
Jan | 5 | 5 | |
Feb | 10 | 15 | |
Mar | 5 | 20 | |
Total | 20 | 20 |
Solved! Go to Solution.
@ziyabikram96 , Try like this
Measure2 =CALCULATE([Dist count Customer],FILTER(ALLSELECTED(CALENDAR),CALENDAR[Date] <= MAX(CALENDAR[Date])))
You should use month from date table in visual
@ziyabikram96 , Try like this
Measure2 =CALCULATE([Dist count Customer],FILTER(ALLSELECTED(CALENDAR),CALENDAR[Date] <= MAX(CALENDAR[Date])))
You should use month from date table in visual
yes its working thanks