I am trying to write a formula statement with the following condition:
If Func = "D" AND FuncType Contains "M" OR FuncType Contains"L" Then "Da"
else if Func = "P" AND FuncType Contains "Pr" OR FuncType Contains "Se" Then "Pro"
Else "Others"
What is the write syntax to write this statement?
Thank you!!