Calculation to yield a salutation
Hello All,
I'm trying to use a calculation field to produce a salutation like "Dear Dr. Brown" for inclusion in an email marketing campaign based on the following fields.
Style 1 (category): First or alt first, Prefix with first
Style 2 (category): Dear, Hi, Hey
Text: Last
Text: First
Text: Alt first
Prefix: Text
Any guidance would be really appreciated.
-
Hi Elliot,
var last = @last name;
var first = @first name;
var altFirst = @alt first;
var pre = @prefix;
var s1 = @style 1;
var s2 = @style 2;
var f = s1 == "First or alt first" ? first || altFirst : s1 == "Prefix with first" ? pre + " " + first : "";
s2 + " " + fWhat are the conditions for using the last name?
Rainer
Please sign in to leave a comment.
Comments
1 comment