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.
c1 | c2 | c3 |
may 2020 | 32 | 32 |
jun 2020 | 22 | 54 |
jul 2020 | 54 | |
aug 2020 | 54 | |
sept 2020 | 34 | 88 |
oct 2020 | 2 | 90 |
nov 2020 | ||
dec 2020 |
I have c2 column and need to display c3 running total but blank values before last value should display previous values
my table is connected to date table
my measure:
but displaying cumulative till last
Solved! Go to Solution.
If tried same scenario and try to filter the data by using slicer which I created from date field it is not giving correct count.
@vijaykumarj19 assume c1 from date table then try this code
=var _currentYM=max(datetable[year month]) return calculate(sum(c2),datetable[year month]<=_currentYM)
Its not showing cumulative count
My table
calculating cumulative and ploted in line graph
Below line should stop at a6
Dax :
can anyone help me with the solution
Need to show a3 and a4 with a2 value
If we have dates as axis
If i have month year from date table as axis then
and i do have a relation between tables
Then how would this dax modified
var c = MAX('Table'[c1])
VAR d = MAXX(FILTER(ALL('Table'),'Table'[c2]>0),'Table'[c1])
Return
IF(c<=d,
CALCULATE(SUM('Table'[c2]),FILTER(ALL('Table'),'Table'[c1]<=c)))
AccTotalc2 = VAR vCurrentDate=MAX(DateTable[Date]) VAR vMaxDate=CALCULATE(MAX('Fact'[c1]),FILTER(ALL('Fact'),'Fact'[c2]>0)) RETURN IF(vCurrentDate<=vMaxDate,CALCULATE(SUM('Fact'[c2]),DateTable[Date]<=vCurrentDate))
AccTotalc4 = VAR vCurrentDate=MAX(DateTable[Date]) VAR vMaxDate=CALCULATE(MAX('Fact'[c1]),FILTER(ALL('Fact'),'Fact'[c4]>0)) RETURN IF(vCurrentDate<=vMaxDate,CALCULATE(SUM('Fact'[c4]),DateTable[Date]<=vCurrentDate))
But it stoped at dec need to be extended till Jan , Because we have value for Jan also
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
11 | |
9 | |
6 |