Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I am currently converting a Tableau report over to Power BI and came across a dashboard that needs to have a parameter slicer that gives the option to exclude different percentages of rows based on the longest days of service. This gives the user the option to find averages based on the bottom 85% of days of service, but still leaves the option to calculate the averages based on all of the rows as well. I've tried to rework it in Power BI, but I'm having trouble allowing the percent excluded to remove rows when changed (excluding the rows where days of service are the longest) rather than multiply the individual Days of Service by a percentage. I was wondering what sort of DAX or M code would allow me to create either a measure or calculated column to allow for this?
Thanks!
Solved! Go to Solution.
Hi @mmcarthur ,
According to your description, I create a sample.
Here's my solution, create a parameter.
Then create a measure,
Average =
AVERAGEX (
TOPN (
'Parameter'[Parameter Value] * COUNTROWS ( ALL ( 'Table' ) ),
'Table',
'Table'[Days of Service], ASC
),
'Table'[Days of Service]
)
Put the measure in a card visual, get dynamic average value based on the parameter slicer.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @mmcarthur ,
According to your description, I create a sample.
Here's my solution, create a parameter.
Then create a measure,
Average =
AVERAGEX (
TOPN (
'Parameter'[Parameter Value] * COUNTROWS ( ALL ( 'Table' ) ),
'Table',
'Table'[Days of Service], ASC
),
'Table'[Days of Service]
)
Put the measure in a card visual, get dynamic average value based on the parameter slicer.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I tried this DAX equation and everything works except the data does not change when the parameter slicer value gets changed. Any thoughts on what I could be missing to cause this to happen?
Hi @mmcarthur ,
Do you use the What if parameter under the Modeling ribbon, and then reference the 'Parameter'[Parameter Value] in the measure(not a calculated column)?
Best Regards,
Community Support Team _ kalyj
@mmcarthur Likely you would want to use the TOPN function in a measure. TOPN function (DAX) - DAX | Microsoft Docs
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.