Forum Discussion

Junato47's avatar
Junato47
Helper I
3 years ago
Solved

Dax Formula

How to use the Dax formula or any other method to create a new column to identify risks that meet its appetite. The condition for us to understand whether the risk is meeting its appetite is, 1. If the Risk appetite is "Averse" and the corresponding risk rating is "Very Low" or 2. if the Risk Appetite is "Minimal" and its corresponding Risk rating is "Low" or 3. if the Risk Appetite is "Conservative" and its corresponding Risk Rating is "Medium" or 4.if the Risk Appetite is "Flexible" and its corresponding Risk Rating is "High" or 5.if the Risk Appetite is "Aggresive" and its corresponding Risk Rating is " Very High". The Risk Rating is obtained from the table "Risk register New" and column name is "Residual Risk" and Risk appetite is obtained from the table "Risk register New" and column name is "Risk Appetite"

  • Anonymous's avatar
    Anonymous
    3 years ago

    Hello you can try :

     

    Measure =

    switch(

    selectedvalue(table[risk appetite]),

    "Averse",[very low calc],

    "Minimal",[low calc],

    "Conservative",[Medium calc],

    "Flexible",[high calc],

    "Agressive",[very high calc]

    )

     

     

     

3 Replies