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 all,
I want to ask you for a help with my DAX formula.
I have dates (blue text on the left), but some of the dates do not have assigned value (measure "Cil splnen"). I want to skip those dates and return the next date that has a value. The desired output is in red - for third date instead of 16.7. I want to return 14.7.
Solved! Go to Solution.
@fozjugho , Try these 2 measures, use second one in visual for <= 3 or =3
M1 = Countx(Filter(Values(Table[Date]) , Not(Isblank([Cil splnen])) ), [Date])
M2 = Sumx(Filter( Values(Table[Date]) , [M1] <=3 ), [Cil splnen] )
@fozjugho , Try these 2 measures, use second one in visual for <= 3 or =3
M1 = Countx(Filter(Values(Table[Date]) , Not(Isblank([Cil splnen])) ), [Date])
M2 = Sumx(Filter( Values(Table[Date]) , [M1] <=3 ), [Cil splnen] )
Thank you, it helped
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |