Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |