Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to get the column Type values in straight table as
If Type not equal to Cheque,DD,CreditCard then Type
Could anyone help me how to write statement.
Thanks.
Try
If(Not MixMatch(Type, 'Cheque', 'DD', 'CreditCard'), Type)
Hi,
Try this :
If(Match(Type, 'Cheque', 'DD', 'CreditCard') = 0, Type)
Thanks it's working