Forum Discussion
StoryofData
Helper III
3 years agoM Launguage If Statement
How do I add another condition to this? if [EmplId] <> "" then [IemCaseNumber]&" | "&[EmplId]&" | "&[IemParticipantName] else "" I need it to do a custom column of [IemCaseNumber]&" | "&[E...
vicky_
Super User
3 years agoyou can use "else if" in M.
StoryofData
Helper III
3 years agothink I got it!
if [EmplId] = ""
then ""
else if
[IemCity] = "Not Applicable"
or [IemCity] = "Not Disclosed"
then
""
else
[IemCaseNumber]&" | "&[EmplId]&" | "&[IemParticipantName]