Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
Solved! Go to Solution.
Result CC =
SWITCH (
TRUE (),
Data[Q1] = 0, "N/A",
Data[Q1] < Data[BaseLine], "No",
Data[Q1] = Data[BaseLine], "Yes"
)
Result CC =
SWITCH (
TRUE (),
Data[Q1] = 0, "N/A",
Data[Q1] < Data[BaseLine], "No",
Data[Q1] = Data[BaseLine], "Yes"
)