Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi there,
I am new here and I need your help.
Let's say we have the following dataset:
Date | Name | Shift | Measure |
2/06/2022 | Nick | morning | 34 |
2/06/2022 | George | morning | 45 |
2/06/2022 | Lisa | morning | 23 |
2/06/2022 | Mary | morning | 14 |
3/06/2022 | Nick | night | 35 |
3/06/2022 | George | night | 24 |
3/06/2022 | Lisa | night | 34 |
3/06/2022 | Mary | night | 17 |
Hi @vazou19 ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
DISTINCT('Table'[Date])
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.
4. Format style – Field value – [color]
5. Result:
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
@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