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 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
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
6 |