Skip to main content
Solved

Concatenate text fields put NaN in field

  • July 21, 2020
  • 2 replies
  • 34 views

Forum|alt.badge.img+1

I.m new to Airtable. I’m trying to concatenate the nickname if the field isn’t empty or the first name if no nick name then a space then the last name. It puts NaN in the field. Here is my code in a formula field:
CONCATENATE(IF(nickname="",First,nickname)+" "+Last)

Best answer by Esabatad_Daeh

Hi Lynda,

Try replacing your + characters with & symbols.
See if that helps. :blush:

2 replies

Forum|alt.badge.img+4
  • Participating Frequently
  • Answer
  • July 21, 2020

Hi Lynda,

Try replacing your + characters with & symbols.
See if that helps. :blush:


Forum|alt.badge.img+1
  • Author
  • Known Participant
  • July 21, 2020

That worked, thanks so much.