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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Dynamic column based on a numeric slicer

I have  numeric Slicer where a number is entered by the dashboard user. This number represents a percentage.  There is an amount value in the dataset. I want to create a new column by  multiply each of the amount values by the value the user enters in the slicer. For example, if the user enters 20, each value in the new column will be amount*20/100. Is it possible to do this? 

 

Thanks for the help. 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , try what if parameter

https://docs.microsoft.com/en-us/power-bi/desktop-what-if

 

Measure = calculate(sum(Table[value])*[whatifmeasure])/100

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hello,

You can add a series of numbers as a table using GENERATESERIES. 

You can then put that column in a slicer and turn on the single select.

Multiplier = GENERATESERIES(1,1000,1)

 Then create a measure to multiply you value by the multiplier:

Product = SUM('Table'[Value]) * SUM('Multiplier'[Value])

Depending on how you want the product output, you can add both the Value and the product in a table. You'll need to set the value to not summarize otherwise it will aggregate your values. OR you could place the second value in a slicer as well if that's what you're after?

 

Hope that helps!

Kim 

 

amitchandak
Super User
Super User

@Anonymous , try what if parameter

https://docs.microsoft.com/en-us/power-bi/desktop-what-if

 

Measure = calculate(sum(Table[value])*[whatifmeasure])/100

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
parry2k
Super User
Super User

@Anonymous yes with a measure

 

New Measure = 
DIVIDE (
SUM ( Table[Amount] * [What-if parameter value],
100 )

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

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! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.