Forum Discussion
gauravnarchal
5 years agoPost Prodigy
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” ...
- 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" )
smpa01
5 years agoCommunity Champion
Column = if('Table 1 (3)'[Exchange]=TRUE(),"Discounted",BLANK())
Fowmy
5 years agoSuper User
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" )