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
mohittimpus
Helper V
Helper V

Not getting correct value of median

I have 2 Tables:

1) Date

2) Employee_Info


'Date' master table is connected with Employee_Info.


I have created one table visualization inside Employe_Info.pbix file. Table is filter with Year.


1) Inside Employee_Info.pbix "Fiscal Month" is taking from Date table, after that I created one Measure with name "#Count Employee" which calculate total 'Count of Employee' column.

 

#Count Employee = CALCULATE(SUM(Employee_Info[Count of Employee]))

 

2) After that I created  Measure with name "Rank of Employee" Which is getting rank of Employee based on fiscal Month.

 

Rank of Employee = if([#Count Employee]>0 || [#Count Employee]<>BLANK(),RANKX (FILTER(ALLSELECTED('Date'[Fiscal Month]),[#Count Employee]<>0 || [#Count Employee]<>BLANK()), [#Count Employee],,ASC,Dense))

 

 

3) Finally I am calculating 'Median' of "#Count Employee" for that I have created Measure with name "Median_of_Emp" with couple of steps followed inside "Median_of_Emp" Measure. 


Median_of_Employee =

VAR _tbl =
SUMMARIZE(
CALCULATETABLE(
'Date',
ALLSELECTED( 'Date'[Fiscal Month] )
),
'Date'[Fiscal Month]
)
RETURN
IF([#Count Employee]>0,
INT(MEDIANX( _tbl, [#Count Employee]))
)



******Now I am not getting correct value 63.64 or Roundup 64 for  "Median_of_Employee" Measure. How to get correct value in Median_of_Employee Measure.

Below I am showing image:

 

Screenshot_2.png

@Mariusz  any Idea about it.

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @mohittimpus 

 

Please see the below calculation result of a Median function in Excel based on this sample.

image.png

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

View solution in original post

1 REPLY 1
Mariusz
Community Champion
Community Champion

Hi @mohittimpus 

 

Please see the below calculation result of a Median function in Excel based on this sample.

image.png

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

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.