Forum Discussion
Anonymous
5 years agoNot applicable
3 different values
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.
Please help me
Result CC =
SWITCH (
TRUE (),
Data[Q1] = 0, "N/A",
Data[Q1] < Data[BaseLine], "No",
Data[Q1] = Data[BaseLine], "Yes"
)
1 Reply
- Jihwan_KimSuper User
Result CC =
SWITCH (
TRUE (),
Data[Q1] = 0, "N/A",
Data[Q1] < Data[BaseLine], "No",
Data[Q1] = Data[BaseLine], "Yes"
)