Concatenate formaula, adding a comma, but if fields are empty still adds comma
Hi, Rookie question;
I have 3 columns “Full Name” (which has the formula to join the next two columns) “Last name” and “First Name”, putting a comma in between.
The formula I’m using is: CONCATENATE({Last name}&", "&{First name})
The issue is when Last name and First name are blank (empty records), the formula runs indefinitely in the Full Name column creating rows and only putting in the comma (see pic). How do I stop this?
I have two columns, 1st is “Days since contact” I want the 2nd column to be a formula for IF 0-30 = HOT, 30-60 = WARM, >60 = COLD
What’s the proper formula/syntax for this?
Thanks, Pat
Hi,
Can I ask another question?
I have two columns, 1st is “Days since contact” I want the 2nd column to be a formula for IF 0-30 = HOT, 30-60 = WARM, >60 = COLD
What’s the proper formula/syntax for this?
Thanks, Pat
I figured this out! Thanks
How about this:
IF({Days since contact} > 60,
"COLD",
IF({Days since contact} > 30,
"WARM",
"HOT"
)
)
If you want to use the actual date of the last contact in the formula:
IF({Date},
IF(DATETIME_DIFF(TODAY(), {Date}, 'd') > 60,
"COLD",
IF(DATETIME_DIFF(TODAY(), {Date}, 'd') > 30,
"WARM",
"HOT"
)
)
)
By the way, here is a slightly different formula for your original question. It will put a “?” as a placeholder for the missing name if only the first or last name is given.
Hello, I’m having the same issue and found this formula to work, but I can’t figure out how to extend the formula to concatenate 4 columns instead of 2. I tried using the below, but that didn’t work. I’m sorry to be so daft, but could you show an example of this formula set up for 4 columns, please? Thank you!!!
Hello, I’m having the same issue and found this formula to work, but I can’t figure out how to extend the formula to concatenate 4 columns instead of 2. I tried using the below, but that didn’t work. I’m sorry to be so daft, but could you show an example of this formula set up for 4 columns, please? Thank you!!!
Hi - i am trying to understand how to read these properly. I have the same issue, where i want to Concatenate text with a comma and space ", " from lookup fields but i do not want to add this comma and space if the field is blank. I have multiple lookup fields
How do i learn this function. I stare at the coding and formula trying to figure it out but it is like looking at another language
I am having a similar issue. I'm having commas show up when I don't want them to show up if the fields are empty.
I'm trying to use this formula which randomly used to work: