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 community,
Please forgive me, I feel like this is probably a simple solution but I am not fully aware of how to code in DAX.
I would like to find a certain percentile for a given column, but only include the values that are less than 300.
So far I have this:
Solved! Go to Solution.
@Anonymous , Try like. I have not tested it
90th = calculate(PERCENTILE.INC(apparatus[Dispatch Time Seconds], .9),apparatus[Dispatch Time Seconds] <300)
@Anonymous , Try like. I have not tested it
90th = calculate(PERCENTILE.INC(apparatus[Dispatch Time Seconds], .9),apparatus[Dispatch Time Seconds] <300)