Forum Discussion

gauravnarchal's avatar
gauravnarchal
Post Prodigy
5 years ago
Solved

Measure - IF Condition for Text

Hello - I need your help to create a measure to find the text in the table and return a value based on the condition.   Condition - If "Table Exchange" has a value True return a value “Discounted” ...
  • Fowmy's avatar
    Fowmy
    5 years ago

    gauravnarchal 

    For a measure:

    Measure 1 = IF( SELECTEDVALUE(Table[Offer is Selected]), "Discounted" )

    If you need a column then,

    Column 1 = IF( Table[Offer is Selected], "Discounted" )