Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi all!
I have a Sales table and a hierarchy table:
Sales
Sales Order | Age | Date | Article |
100 | 550 | 01.01.2022 | ABC |
101 | 640 | 05.01.2022 | DEF |
Hierarchy
Article |
ABC |
DEF |
Now I have calculated the 1. Quartile using this measure:
QUARTILE1 = PERCENTILE.INC(Sales[Age],0.25)
Now I would like to show the 1. Quartile and Age on a bar chart.
The Age should be displayed as calculated for each date.
But the 1. Quartile should be displayed as a linear line as the total Quartile for the selected value.
How can I remove the relation to the date? Is always shows the 1. Quartile for the date and not as an average for the full time.
Solved! Go to Solution.
Hi @joshua1990
please try
AVERAGE QUARTILE1 =
AVERAGEX ( ALLSELECTED ( Sales[Date] ), [ QUARTILE1] )
Hi @joshua1990
please try
AVERAGE QUARTILE1 =
AVERAGEX ( ALLSELECTED ( Sales[Date] ), [ QUARTILE1] )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
6 | |
4 | |
3 | |
3 |
User | Count |
---|---|
13 | |
11 | |
8 | |
8 | |
8 |