Forum Discussion
Anonymous
5 years agoNot applicable
3 Different status
Hi Team,
I want my column based on my baseline value, if my Q1 is less than Baseline then No if it is equal to Baseline then Yes, if the Q1 is 0% then N/A.
Hi, Anonymous
Try to change you formula as below:
Result = SWITCH ( TRUE (), 'Table'[Q1] = 0, "N/A", 'Table'[Q1] < 'Table'[Base Line], "NO", 'Table'[Q1] = 'Table'[Base Line], "YES" )Best Regards,
Community Support Team _ Eason
3 Replies
- CNENFRNL
Community Champion
Calculated column
Result = SWITCH( TRUE(), 0, "N/A", [Q1] < [Base Line], "NO", "YES" )- AnonymousNot applicable
- v-easonf-msft
Community Support
Hi, Anonymous
Try to change you formula as below:
Result = SWITCH ( TRUE (), 'Table'[Q1] = 0, "N/A", 'Table'[Q1] < 'Table'[Base Line], "NO", 'Table'[Q1] = 'Table'[Base Line], "YES" )Best Regards,
Community Support Team _ Eason