We use calc fields to drive naming conventions on our projects. I have been successful on updating a few of the naming conventions however I need to apply a new formula that pulls in two fields in order to determine a portion of the name of the project.
Example:
IF({DE:Collateral Routing Request Type}='ACAR',"ACAR"
I now need to look at the following two fields to determine a portion of the naming convention:
IF({DE:Collateral Routing Request Type}='Non-Campaign'
AND
IF({DE:What is the primary purpose or strategy of delivering this piece?}= Marketing then it should be NCM
I need to launch this ASAP so any help would be appreciated.
Thank you!
Views
Replies
Total Likes
Hi there,
What is the end goal, you are looking to string these 3 pieces together in 1 calculated expression (CONCAT)? I'm not an expert in this but if so, that's where parentheses are key. For example, if you want them to all run together for the output, try something like:
CONCAT(IF({DE:Collateral Routing Request Type}='ACAR',"ACAR"),IF({DE:Collateral Routing Request Type}='Non-Campaign',"insert what you want it to read as if Non-Campaign is selected"),IF({DE:What is the primary purpose or strategy of delivering this piece?}='Marketing',"NCM"))
You put parenths around each piece of the expression, need to end up with same number of ( and ) parenths in the whole expression.
Views
Replies
Total Likes
I have a much larger calc field that this is part of. Essentially I need I need to combine two fields into one piece of a larger naming convention. CONCAT is at the top of my calc (seen below) so I need to be able to take these two fields and their answers to create NCM:
Calc Field:
Views
Replies
Total Likes
Not sure if I'm reading your question correctly, but are you saying that:
If the Request Type = Non-Campaign AND the Strategy = Marketing, then you want NCM?
If so, then I think either of these would work:
Option A:
IF({DE:Collateral Routing Request Type}='Non-Campaign' && {DE:What is the primary purpose or strategy of delivering this piece?}='Marketing',"NCM","")
Option B:
IF({DE:Collateral Routing Request Type}='Non-Campaign',IF({DE:What is the primary purpose or strategy of delivering this piece?}='Marketing',"NCM",""),"")
Views
Replies
Total Likes
Views
Likes
Replies