John Dalesandro

Power BI What-If Analysis: Create Interactive Reports Using Modeling Parameters

Microsoft Power BI enables users to model “what-if” scenarios and conduct sensitivity analyses using input parameters. This feature transforms Power BI from a tool for data retrieval, aggregation, transformation, and visualization into an interactive platform, allowing users to explore how decisions might affect outcomes.

Instructions

Step 1: Data Setup

In this guide, we’ll use what-if analysis to assess how gross revenue changes based on units sold for products with varying prices. We have a simple table listing each product and its unit price, named TBL_PRODUCTS. This example table was created manually in Power BI.

For this demonstration, we’ll use two products: WIDGET and GADGET.

Screenshot of the underlying data table in Power BI.
Power BI: Data Table

Step 2: Create Modeling Parameters

  1. From the Modeling ribbon in Power BI, click New parameter, and select Numeric range.
Screenshot of the 'New parameter' option within the Modeling ribbon in Power BI.
Power BI: Adding a New Numeric Range Modeling Parameter
  1. The Parameters screen is displayed.
  2. Configure the new parameter as follows:
  1. Click the Create button.
  2. Repeat these steps to add a second parameter named PROJECTED_UNITS_SOLD_GADGETS.
Screenshot of the 'Parameters' screen displaying the configuration settings for the 'PROJECTED_UNITS_SOLD_WIDGETS' parameter in Power BI.
Power BI: Parameter Configuration for PROJECTED_UNITS_SOLD_WIDGETS

Step 3: Format Slicers

Since Add slicer to this page was enabled, slicers will automatically appear in the Report view. By default, their titles match the parameter names, but let’s make them more user-friendly:

Screenshot of the new slicer automatically displayed in the Report view in Power BI.
Power BI: New PROJECTED_UNITS_SOLD_WIDGETS Slicer Automatically Displayed
  1. Select the PROJECTED_UNITS_SOLD_WIDGETS slicer.
  2. Open the Visualizations pane and select Format visual.
  3. Under the Slicer header section, update the Title text to Projected Widget Sales.
  4. Repeat these steps for the PROJECTED_UNITS_SOLD_GADGETS slicer, renaming the title to Projected Gadget Sales.
Screenshot of slicer title text configuration in Power BI.
Power BI: Renaming the Slicer
  1. Adjust the slicer’s height and width to fit the report layout.
Screenshot of the formatted and renamed slicer in Power BI.
Power BI: Formatted Slicer

Step 4: Create Calculations Using Parameters

To calculate gross revenue, create two new measures:

  1. From the Data pane, select PROJECTED_UNITS_SOLD_WIDGETS.
  2. From the Table tools ribbon, click New measure.
  3. Enter the following DAX formula expression to calculate widget sales revenue:
MSR_PROJECTED_WIDGET_SALES =
    VAR vWidget_Price =
        CALCULATE (
            MAX ( TBL_PRODUCTS[PRICE] ),
            FILTER ( ALLSELECTED ( TBL_PRODUCTS ), TBL_PRODUCTS[PRODUCT NAME] = "WIDGET" )
        )
    VAR vProjected_Units_Sold_Widgets = SELECTEDVALUE ( PROJECTED_UNITS_SOLD_WIDGETS[PROJECTED_UNITS_SOLD_WIDGETS] )
RETURN vProjected_Units_Sold_Widgets * vWidget_Price
Screenshot of the 'MSR_PROJECTED_WIDGET_SALES' DAX formula expression in Power BI.
Power BI: New Measure Formula for MSR_PROJECTED_WIDGET_SALES
  1. Repeat these steps for PROJECTED_UNITS_SOLD_GADGETS using this DAX formula expression:
MSR_PROJECTED_GADGET_SALES =
    VAR vGadget_Price =
        CALCULATE (
            MAX ( TBL_PRODUCTS[PRICE] ),
            FILTER ( ALLSELECTED ( TBL_PRODUCTS ), TBL_PRODUCTS[PRODUCT NAME] = "GADGET" )
        )
    VAR vProjected_Units_Sold_Gadgets = SELECTEDVALUE ( PROJECTED_UNITS_SOLD_GADGETS[PROJECTED_UNITS_SOLD_GADGETS] )
RETURN vProjected_Units_Sold_Gadgets * vGadget_Price
Screenshot of the 'MSR_PROJECTED_GADGET_SALES' DAX formula expression in Power BI.
Power BI: New Measure Formula for MSR_PROJECTED_GADGET_SALES

Step 5: Add Visualizations

  1. In the Report view, add a Donut chart from the Visualizations pane.
  2. Drag MSR_PROJECTED_WIDGET_SALES and MSR_PROJECTED_GADGET_SALES into the Values field.
Screenshot of the donut chart visualization configuration to display 'MSR_PROJECTED_WIDGET_SALES' and 'MSR_PROJECTED_GADGET_SALES' in Power BI.
Power BI: Donut Chart Configuration to Display MSR_PROJECTED_WIDGET_SALES and MSR_PROJECTED_GADGET_SALES
  1. To show total projected sales, create a new measure using the following DAX formula expression:
MSR_TOTAL_PROJECTED_SALES = [MSR_PROJECTED_WIDGET_SALES] + [MSR_PROJECTED_GADGET_SALES]
  1. Add a Card visualization to display MSR_TOTAL_PROJECTED_SALES.
Screenshot of the card visualization configuration to display 'MSR_TOTAL_PROJECTED_SALES' in Power BI.
Power BI: Card Configuration to Display MSR_TOTAL_PROJECTED_SALES

Result

Your report will now show:

As users adjust slicer values, the report dynamically updates calculations and visualizations, enabling interactive what-if analysis. This transforms the user experience from passive report viewing to actively exploring data and outcomes.

Animated screenshot of the fully functioning what-if analysis in Power BI.
Power BI: Result Displaying User Adjustments to Slicers Changing Analysis Parameters and Visualizations

Summary

By leveraging Power BI’s what-if analysis and modeling parameters, users can interactively explore how decisions affect outcomes. This dynamic approach turns static reports into powerful decision-making tools. As slicer values change, real-time visual updates provide immediate insights into projected sales and revenue.