Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a table with a column for Actualy Monthly Revenue and a calculated Row for Annual Revenue. I would like to give my user an option to click on button with 10%, 20%, 30%, etc and the Revenue columns to be multiplied times this percentage.
I am new to Power BI so be gentle.
Solved! Go to Solution.
Hi @dyrcm,
In one of my dashboard I add to have some simulations run at different percentages and I was abble to do it using a separate table and making the calculation based on that table using a slicer, this is similar to the approach that I use to make YTD, QTD, and MTD calculation (check also http://community.powerbi.com/t5/Desktop/Switching-Values-on-a-report-with-a-splicer/td-p/73389)
First create a table with the parameters you want to use for your slicer that as the following structure:
Table Name = Simulation
Increment
0,1
0,2
0,3
...
Since this is percentages and you want to multiply this by the values it's easier to do it with decimal values.
IMPORTANT: dont' create any relationship with other tables must be a standalone table.
Within the table create the two following measures:
Selected Timeframe= MIN(Simulation[Increment])
Selection = IF (HASONEVALUE ( Simulation[Increment]), VALUES ( Simulation[Increment]))
The first measure gives you the minimum Increment selected in the slicer.
The second one gives tells you what is the interval to consider when you select the values in the slicer if none are selected the full table is considered and then the minimum value is used based on the first measure.
On the table where you have the Revenue create the following measures:
Actualy Monthly Revenue Recalc = Actualy Monthly Revenue * ALLSELECTED(Simulation[Increment])
Now you can use the Increment for your slicer and the Actualy Monthly Revenue Recalc for you graphs, tables whatever when you change the slicer the calculations change accordingly.
Regarding the annual value this can be made by the sum function in your visuals.
Hope this helps. Any question please tell me.
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @dyrcm,
In one of my dashboard I add to have some simulations run at different percentages and I was abble to do it using a separate table and making the calculation based on that table using a slicer, this is similar to the approach that I use to make YTD, QTD, and MTD calculation (check also http://community.powerbi.com/t5/Desktop/Switching-Values-on-a-report-with-a-splicer/td-p/73389)
First create a table with the parameters you want to use for your slicer that as the following structure:
Table Name = Simulation
Increment
0,1
0,2
0,3
...
Since this is percentages and you want to multiply this by the values it's easier to do it with decimal values.
IMPORTANT: dont' create any relationship with other tables must be a standalone table.
Within the table create the two following measures:
Selected Timeframe= MIN(Simulation[Increment])
Selection = IF (HASONEVALUE ( Simulation[Increment]), VALUES ( Simulation[Increment]))
The first measure gives you the minimum Increment selected in the slicer.
The second one gives tells you what is the interval to consider when you select the values in the slicer if none are selected the full table is considered and then the minimum value is used based on the first measure.
On the table where you have the Revenue create the following measures:
Actualy Monthly Revenue Recalc = Actualy Monthly Revenue * ALLSELECTED(Simulation[Increment])
Now you can use the Increment for your slicer and the Actualy Monthly Revenue Recalc for you graphs, tables whatever when you change the slicer the calculations change accordingly.
Regarding the annual value this can be made by the sum function in your visuals.
Hope this helps. Any question please tell me.
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsShare feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |