Hello! So I have a table that I am trying to run a formula to the primary field.
Here is what I have:
IF((Retailer = “Rachel”),("#" &{Order #}) & “-” & “R”) & IF((Retailer = “Mandee”),("#" &{Order #}) & “-” & “M”) & IF((Retailer = “Nichole”),("#" &{Order #}) & “-” & “N”) & IF((Client = “Transfer”),“T”)
Everything is working great, except for the last part “Client = Transfer”
What I’m trying to do is pull the retailer initial and add it to the order number, BUT if the customer shows (Transfer)Name then it will also pull a T
IE: #1231234-MT (or some variation)