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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello everyone, I have here a DAX to return me a quartile for the measure [Test Net Revenue %], it's returning me the right quartile for the right Time period slicer, but for the BUs slicer os not repecting the slicer. How can I return the quartiles respecting the filters?
Thanks
Please try the following Dax:
Teste Quartile =
CALCULATE(
PERCENTILE.INC('dCountries'[Test Net Revenue %], 0.75),
ALLSELECTED('dCountries','dCountries'[BUs])
)
If your problem is still not solved, please provide detailed sample pbix file and the results you expect.So that I can help you better. Please remove any sensitive data in advance.
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Jhonatta_Bernar - Create a below measure with All selected() function , for quartile respects all slicers, including the Business Unit (BU) slicer.
Teste Quartile =
CALCULATE (
PERCENTILEX.INC(
ALLSELECTED(dCountries),
[Test Net Revenue %],
0.75
)
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
It didn't work, it just repeats the [Test Net Revenue %] that I already have.
look.
Hi @Jhonatta_Bernar - Can you please share the same with sample data and what are the filters that you are using list.
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.