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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Sri_phani
Helper III
Helper III

Quartile Calculation - Incorrect values

Hi, 

 

I am trying to show the month-on-month Quartiles for the metric called Resolve. Below is the measure I am trying to use, when the single month is selected the result seems to be accurate but when we remove the month filter then results are not accurate.  

 
Can you please help me with this. 
 
Res% Quartile =
VAR AgentScore = [Resolve]
VAR FilteredData_1 = ALLSELECTED('1_Core Raw data'[Start of Month],'1_Core Raw data'[Final Team manager])
VAR Result_1 =    
IF(NOT ISBLANK(AgentScore),SWITCH(
        TRUE(),
        AgentScore >= PERCENTILEX.INC(FilteredData_1, [Resolve], 0.75), "Q1",
        AgentScore >= PERCENTILEX.INC(FilteredData_1, [Resolve], 0.50), "Q2",
        AgentScore >= PERCENTILEX.INC(FilteredData_1, [Resolve], 0.25), "Q3",
        AgentScore >= PERCENTILEX.INC(FilteredData_1, [Resolve], 0), "Q4"))
RETURN
Result_1

 

Sri_phani_0-1720885729749.png

 

Thank!

1 ACCEPTED SOLUTION

Issue is resolved one of my friend helped me with Filter function. 

 

FilteredData_1 = FILTER(ALLSELECTED('1_Core Raw data'[Start of Month],'1_Core Raw data'[agent_email],'1_Core Raw data'[Final Team manager]),'1_Core Raw data'[Start of Month]=SELECTEDVALUE('1_Core Raw data'[Start of Month]))

View solution in original post

2 REPLIES 2
Sri_phani
Helper III
Helper III

This is the sample result that I am looking for, 

Sri_phani_1-1720886418965.png

 

 

Issue is resolved one of my friend helped me with Filter function. 

 

FilteredData_1 = FILTER(ALLSELECTED('1_Core Raw data'[Start of Month],'1_Core Raw data'[agent_email],'1_Core Raw data'[Final Team manager]),'1_Core Raw data'[Start of Month]=SELECTEDVALUE('1_Core Raw data'[Start of Month]))

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

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