Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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ês