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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
vazou19
Regular Visitor

Calculate average by group which is unaffected by date slicer

Hi there,

 

I am new here and I need your help.

 

Let's say we have the following dataset:

 

DateNameShiftMeasure
2/06/2022Nick

morning 

34
2/06/2022Georgemorning45
2/06/2022Lisamorning 23
2/06/2022Marymorning14
3/06/2022Nick

night

35
3/06/2022Georgenight24
3/06/2022Lisanight34
3/06/2022Marynight17

   

 

I would like a measure for conditional formatting purposes. So I want the all-time average of each type of shift. Then on my performance report, I want to show their stats in green color if they are above the average and red if they are below. In other words, if my report is for 3/06/2022, I want this measure to give me the all-time average of night shifts only and be unaffected by the selected date "3/06/2022". 
 
I hope it makes sense.
 
Thank you in advance.


        

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @vazou19 ,

I created some data:

vyangliumsft_0-1662356891036.png

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
DISTINCT('Table'[Date])

vyangliumsft_1-1662356891039.png

2. Create measure.

AVG =
var _select=SELECTEDVALUE('Table 2'[Date])
var _selectshift=
MAXX(FILTER(ALL('Table'),'Table'[Date]=_select),[Shift])
return
AVERAGEX(FILTER(ALL('Table'),'Table'[Date]<>_select&&'Table'[Shift]=_selectshift),[Measure])
color =
IF(
    MAX('Table'[Measure]) >=[AVG],"green","red")

3. Select [Measure] – Conditional formatting – Background color.

vyangliumsft_2-1662356891042.png

4. Format style – Field value – [color]

vyangliumsft_3-1662356891044.png

5. Result:

vyangliumsft_4-1662356891049.png

If you need pbix, please click here.

Calculate average by group which is unaffected by date slicer.pbix

 

Best Regards,

Liu Yang

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

amitchandak
Super User
Super User

@vazou19 , a new measure

Calculate(AverageX(Summarize(Table,Table[Date], Table[Name], "_1",[Measure]) , [_1]), Filter(all(Table), Table[Shift] = max(Table[Shift]) ))

Thank you for the prompt reply.

 

However, it doesn't let me write the [measure]. It gives me only the [date] and [name] options. Any thoughts?

 

Thanks

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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