Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
abiyevnijat
Frequent Visitor

PowerBI dynamic columns based on slicer

Hello everyone,

 

Business Time % =
IF ( 'Dashboard'[Business] < [SLA Time]1[SLA Time] / 'Dashboard'[Business] )
 
I have calculated column in my main table (Dashboard). My SLA Time measure is SLA Time = 2 which is not dynamic. I want to create slicer dropdown visual from 1 to 48 instead of SLA Time. When I select my value from slicer I want to get result in Business Time % dynamically. How can I get my result? My Business column in my table in Decimal number format and it shows hours.
1 ACCEPTED SOLUTION

Hi @abiyevnijat ,

 

For this you need to use a different measure. Try the following measure:

Business Time % =
VAR temptable =
    ADDCOLUMNS (
        'Dashboard',
        "@BusinessTime%",
            IF (
                'Dashboard'[Business] < SELECTEDVALUE ( 'Slicer'[Slicer] ),
                1,
                SELECTEDVALUE ( Slicer[Slicer] ) / 'Dashboard'[Business]
            )
    )
RETURN
    AVERAGEX ( temptable, [@BusinessTime%] )

 

MFelix_0-1695889515079.png

 

MFelix_1-1695889536803.png

 

See PBIX file attach.

 

 

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

9 REPLIES 9
abiyevnijat
Frequent Visitor

question.png

Business Time % =
IF ( 'Dashboard'[Business] < [SLA Time]1[SLA Time] / 'Dashboard'[Business] )
with this formula I can get the answer. But I have SLA Time = 2 measure and I change this manually. I want to add slicer (dropdown) visual which values from 1 to 48. When I select my value in slicer I want to get my value in Business Time % column according to the slicer value.

Hi @abiyevnijat ,

 

You need to create a new measure to use on your visualizations, you cannot update values on a table using a slicer.

 

So in this case the Business Time % needs to be a measure also and not a calculated column on your model, that way you get the expected result that is dynamic based on the what if parameter measure.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks again for your response. I created parameter which values between 1 from 48. Then I create measure 

Business Time % = 
IF ( 'Dashboard'[Business] < SELECTEDVALUE('Slicer'[Value]), 1, SELECTEDVALUE('Slicer'[Value]) / 'Dashboard'[Business] )

 In this measure my Business values is a column in my Dashboard table and I cant result Business Time % like that. Is there any method to find Business Time %, with different code or something which I can show average Business Time % in card visual, when I change my values in slicer when add parameter

Hi @abiyevnijat ,

 

For this you need to use a different measure. Try the following measure:

Business Time % =
VAR temptable =
    ADDCOLUMNS (
        'Dashboard',
        "@BusinessTime%",
            IF (
                'Dashboard'[Business] < SELECTEDVALUE ( 'Slicer'[Slicer] ),
                1,
                SELECTEDVALUE ( Slicer[Slicer] ) / 'Dashboard'[Business]
            )
    )
RETURN
    AVERAGEX ( temptable, [@BusinessTime%] )

 

MFelix_0-1695889515079.png

 

MFelix_1-1695889536803.png

 

See PBIX file attach.

 

 

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



It is completely what I want. Big thanks for you

devesh_gupta
Super User
Super User

@abiyevnijat 

To achieve the desired result of dynamically calculating the Business Time % based on the selected value from a slicer dropdown visual, you can follow these steps:

Create a new measure in your main table (Dashboard) using the following formula:

 

Business Time % = 
IF ( 'Dashboard'[Business] < SELECTEDVALUE('Slicer'[Value]), 1, SELECTEDVALUE('Slicer'[Value]) / 'Dashboard'[Business] )

 

  1. Create a new table (Slicer) with a single column (Value) containing values from 1 to 48.

  2. Add a slicer visual to your report using the ‘Value’ column from the ‘Slicer’ table.

  3. Selecting a value from the slicer will dynamically update the ‘Business Time %’ measure based on the selected value and the corresponding value in the ‘Business’ column of your main table.

If you find this insightful, please provide a Kudo and accept this as a solution.

Thanks for answer. But, I want my Business Time  % not in measure. I want to see my values in all rows in Business Time % according to Business Column. For example, when I select 4 in dropdown which is my SLA Time, I want to see in  

Business Time % =
IF ( 'Dashboard'[Business] < [SLA Time], 1, [SLA Time] / 'Dashboard'[Business]
which all rows gives answer according to Business Column. I got this result whem I create SLA Time measure and change manually. But, I want do this dynamically with slicer
MFelix
Super User
Super User

Hi @abiyevnijat ,

 

For this you need to use a What If parameter.

 

https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-what-if

 

This will allow to have a slicer where you select the SLA time and use the metric on your calculations.


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks for quick response. I visited this link, but I cant get suitable information for my problems. I create parameter table and added to slicer,but I cant get wanted result. All rows in my column display null when I change slicer.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.