Join 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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi Everyone,
I am facing issue when i am trying to create DAX for calculate the date based on max Call closed.
Here in above example, if you see red circle , i need this date(date which is max OCB(OCB is nothing but Sb_contractcall))
When i am using my Below DAX,
it will give me Blank Value, Can you pleas ehelp to calculate DAX for this.here(OCB=Sb_contractcall Column, Date(ETA column)
Solved! Go to Solution.
Hi @Mahmoodul
Try this measure
Measure =
VAR maxOCB = CALCULATE(MAX('Table (2)'[OCB]),ALLSELECTED('Table (2)'[Date]))
RETURN
CALCULATE(FIRSTDATE('Table (2)'[Date]),ALL('Table (2)'),'Table (2)'[OCB]=maxOCB)
In your original measure, maybe no rows can meet the condition [Max_value]=selectedmax, so the result is blank.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Mahmoodul
Try this measure
Measure =
VAR maxOCB = CALCULATE(MAX('Table (2)'[OCB]),ALLSELECTED('Table (2)'[Date]))
RETURN
CALCULATE(FIRSTDATE('Table (2)'[Date]),ALL('Table (2)'),'Table (2)'[OCB]=maxOCB)
In your original measure, maybe no rows can meet the condition [Max_value]=selectedmax, so the result is blank.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.