Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone,
I have built a cumulative line in line visual and I want to create a linear line that will show 0 at the start and max Value at the end of the visual. Any tips ? I literally need the black line to be built. I am using dax so all measures are explicit but I cant figure out how to make this basic line :D.
I have tried this
this is the result
but I need this
Solved! Go to Solution.
I have already sorted it out. It was a need to remove a date filter only (for Trend WO number). everything else works just fine
I have already sorted it out. It was a need to remove a date filter only (for Trend WO number). everything else works just fine
@TomaKavi , You can try window for cumulative function or with help from date table
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all('Date'),'Date'[date] <=max('Date'[date])))
Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] <=max(date[Date])))
Running Total/ Cumulative: https://www.youtube.com/watch?v=h2wsO332LUo&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=41
Power BI Window function Rolling, Cumulative/Running Total, WTD, MTD, QTD, YTD, FYTD: https://youtu.be/nxc_IWl-tTc
my problem is this measure, if I hardcode this value lets say on 1290 it works perfectly fine. So I need to remove all filters but keep the one used on plane
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |