Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Change Table values based on what it slicer value

EmployeeGross PayPercent Value
11000 
21500 
32000 

 

I have the above table in Power BI. I need the 'Percent Value' column to be populated with a value based on a parameter selection, i.e. If I input 80 (%) I want the following to appear:

 

EmployeeGross PayPercent Value
11000800
215001200
320001600

 

I cannot use a calculated column as the 'Percent Value' will need to change depending on the slicer (what if) selection. I don't know how to structure a measure as I cannot use the 'Gross Pay' value, it is loaded directly from an excel file and not available for use within a measure.

 

Any help greatly appreciated.

 

  • Anonymous 

    You can not create a column You can create a measure

     

    Percent Value = sum(Table[Gross Pay])*[what if measure]

     

    //What will create a measure use that

1 Reply

  • Anonymous 

    You can not create a column You can create a measure

     

    Percent Value = sum(Table[Gross Pay])*[what if measure]

     

    //What will create a measure use that