Forum Discussion
Jhonatta_Bernar
2 years agoRegular Visitor
Percentile formula not respecting the slicers
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 ...
rajendraongole1
Super User
2 years agoHi 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!!
- Jhonatta_Bernar2 years agoRegular Visitor
It didn't work, it just repeats the [Test Net Revenue %] that I already have.
look.- rajendraongole12 years ago
Super User
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!!