Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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êsThis is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |