Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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.
Solved! Go to Solution.
@Anonymous , try what if parameter
https://docs.microsoft.com/en-us/power-bi/desktop-what-if
Measure = calculate(sum(Table[value])*[whatifmeasure])/100
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
@Anonymous , try what if parameter
https://docs.microsoft.com/en-us/power-bi/desktop-what-if
Measure = calculate(sum(Table[value])*[whatifmeasure])/100
@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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
85 | |
66 | |
52 | |
48 |
User | Count |
---|---|
215 | |
90 | |
83 | |
67 | |
59 |