I am writing a variable using IF, THEN, ELSE:
= If <SR Status>="Closed" And <Activity Type>="Program Delivery" And <Activity Sub Type>="Reach to Recovery" Then "Closed" Else If <SR Service Type>="Reach to Recovery" And <SR Status>="Unable to Contact" Or <SR Service Type>="Reach to Recovery" And <SR Status>="Closed - Not Met" Or <SR Service Type>="Reach to Recovery" And <Activity Type> InList ("Call - Inbound" , "Call - Outbound" , "Email - Inbound" , "Email - Outbound" , "Fax - Inbound" , "Fax - Outbound") And <Activity Status>="Closed - No Reply" And <Activity Volunteer Last/Org Name>="#EMPTY" Then "Cancelled"
However, after the first Then statement (Then "Closed"), I have the criteria for which records meet Then "Cancelled". But I want to add in there that if the records meet the criteria for "Closed", to exclude them in the "Cancelled". I can't figure out how to do this.
= If <SR Status>="Closed" And <Activity Type>="Program Delivery" And <Activity Sub Type>="Reach to Recovery" Then "Closed" Else If <SR Service Type>="Reach to Recovery" And <SR Status>="Unable to Contact" Or <SR Service Type>="Reach to Recovery" And <SR Status>="Closed - Not Met" Or <SR Service Type>="Reach to Recovery" And <Activity Type> InList ("Call - Inbound" , "Call - Outbound" , "Email - Inbound" , "Email - Outbound" , "Fax - Inbound" , "Fax - Outbound") And <Activity Status>="Closed - No Reply" And <Activity Volunteer Last/Org Name>="#EMPTY" Then "Cancelled"
However, after the first Then statement (Then "Closed"), I have the criteria for which records meet Then "Cancelled". But I want to add in there that if the records meet the criteria for "Closed", to exclude them in the "Cancelled". I can't figure out how to do this.