Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a column were i need to derive a flag as .
If first character starts with "F" as good else " Bad".
Thanks..
Hi
Try like below
If(Left(Columnname, 1) = 'F', 'Good', 'Bad')
Hi
Try like below
If(Left(Columnname, 1) = 'F', 'Good', 'Bad')