Forum Discussion
Anonymous
5 years agoNot applicable
Custom Column with Or
Hi Experts How would you write the following in M Script as a custom column = if [type redemption = "Early" or "Full" then [Cash Amt] else Null getting an error on second condition "Full...
- 5 years ago
Hello Anonymous
It should be like this:
if [type redemption] = "Early" or [type redemption]= "Full" then [Cash Amt] else null
themistoklis
5 years agoCommunity Champion
Hello Anonymous
It should be like this:
if [type redemption] = "Early" or [type redemption]= "Full" then [Cash Amt] else null