Custom Formula Format, reference

Trying to display a combination of two fields to be a friendly combination of a “name” and “city” (in the “address” object) field. These are separate fields in the same table.

I’m struggling to understand the format I need to use here.

The following doesn’t work but I’m sure this is a “me” issue!

=CONCAT(item.name, ’ ', item.address.city_town)

Hi there Matt! I think the ‘=’ is redundant.
Try this formula:
CONCAT(item.name,’ ',item.address.city_town)

If it won’t work – message us in chat and we’ll figure it out together!

Bam! That was it. Sometimes the obvious is easy to miss.