Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Mahmoodul
Helper I
Helper I

How can i calculate the date based on max Call closed

Hi Everyone,

I am facing issue when i am trying to create DAX for calculate the date based on max Call closed.Date Which closed most number of call(max_occurance_date).png

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,

DAX to calculate max occurance.png

it will give me Blank Value, Can you pleas ehelp to calculate DAX for this.here(OCB=Sb_contractcall Column, Date(ETA column) Blank value.png

 

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

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)

21120603.jpg

 

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.

View solution in original post

1 REPLY 1
v-jingzhang
Community Support
Community Support

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)

21120603.jpg

 

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.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.