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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Median of Median on TimeSeries

Dear Community

I'm created a MEDIAN measure for salesPrice. 

 

ahau_1-1666257823597.png

 

As you can see on my screenshot, the blue line is the result I currently get.

But what I like to get is the Median based on the selected date range.

That would be 53.67 in my example, because this is the middle value (median) of this three numbers.

 

I tried the followning meaure but I don't work as expected.

 

Test_Medain =
Var Var_LastDate  = Max('Time'[DateKey])
Var Var_FirstDate = Min('Time'[DateKey])
Var x =
CALCULATE(
    MEDIAN(OrderLine[SalesPriceEUR])
    ,Filter(
         ALL('Time')
        ,AND('Time'[DateKey] >= Var_FirstDate ,
             'Time'[DateKey] <= Var_LastDate
        )
    )
)
Return (x)    

 

ahau_2-1666258123301.png

 

Any plans how I must modify my query?

Thx 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

You can try the following measure.

Medain=
Var SalesPrice = Sum(Sales[SalePrice])
Var SelectedTime = ISFILTERED('Time'[DateValue])
Var Result =
    IF(SelectedTime,
        MEDIANX(
            ALLSELECTED('Time'),[SalesPrice]
        )
    )
Return
    Result

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

 

You can try the following measure.

Medain=
Var SalesPrice = Sum(Sales[SalePrice])
Var SelectedTime = ISFILTERED('Time'[DateValue])
Var Result =
    IF(SelectedTime,
        MEDIANX(
            ALLSELECTED('Time'),[SalesPrice]
        )
    )
Return
    Result

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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