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.
Hello,
I'm trying to display 3 things on a line chart:
- average asked score ( a constant ) - Done
- average score of someone - Done
- average score of the someone 's team - issue
Here are my data
there are several Departments , with several teams , with several technicians.
I'd like to display my result in a line chart like this. A filter allow me to choose a Department , then a team , then a technician
I tried the following Dax formula :
@Anonymous , Try with Team/Technicien
Avg_Score_department = CALCULATE(AVERAGE(Data[Score]),filter(ALLselected(Data), Data[Technicien] =max(Data[Technicien])))
@amitchandak Hello and thanks for your fast anwser 😊
unfortunately , it's not working since it shows a constant ( same result with Team/ Technician ) ...
I 'd like it to be calculated per month , may be I should use AVERAGEX ?