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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.