This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello everyone,
I have calculated column in my main table (Dashboard) like that:
Business Time % = IF ( 'Dashboard'[Business] < [SLA Time], 1, [SLA Time] / 'Dashboard'[Business] )
then created measure like that:
AVG Business Time % = AVERAGE('Dashboard'[Business Time %])
Format of Business column is decimal number and it represent hour of completed tasks. Every row of column is different from 0 to 100.
My SLA Time measure is SLA Time = 2
which is not dynamic and I am changing manually. I want to create slicer dropdown visual which values changing from 1 to 48 instead of SLA Time. When I select my wanted value from slicer I want to get result AVG of Business Time % dynamically.
I got this result manually, but I want to share this in web. That is why want to get result dynamically for users.
Solved! Go to Solution.
Business Time % =
VAR temptable =
ADDCOLUMNS (
'Dashboard',
"@BusinessTime%",
IF (
'Dashboard'[Business] < SELECTEDVALUE ( 'Slicer'[Slicer] ),
1,
SELECTEDVALUE ( Slicer[Slicer] ) / 'Dashboard'[Business]
)
)
RETURN
AVERAGEX ( temptable, [@BusinessTime%] )This is final solution of my task.
Business Time % =
VAR temptable =
ADDCOLUMNS (
'Dashboard',
"@BusinessTime%",
IF (
'Dashboard'[Business] < SELECTEDVALUE ( 'Slicer'[Slicer] ),
1,
SELECTEDVALUE ( Slicer[Slicer] ) / 'Dashboard'[Business]
)
)
RETURN
AVERAGEX ( temptable, [@BusinessTime%] )This is final solution of my task.
Hello @abiyevnijat ,
check this https://youtu.be/6a_5uderwAg?si=WgU4Leb3uEVHPRD2
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
Follow me on Linkedin
Vote for my Community Mobile App Idea 💡
Proud to be a Super User! | |
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 22 | |
| 22 |