I have a situation where I need to display the linked records in a field like this (including the double “” on either end):
““recFMVIujI5jqSiSD””,““recf8rGUjcM0li5f4"”,”“recztuGU7Tl4GSSYU”"]
Is this possible?
I have this code to format it, I just need the ID part.
'c"' &
SUBSTITUTE(
{Relations},
', ',
'","'
) &
'"]'
Which displays:
l“record1”,“record2”,“record3”]
Instead of the record primary field name, I need it to display the record ID in a text field as formated above.
I have a linked record column, then I added a new text field column that grabs the name from that linked column but I need it to be the record ID. Does that make sense?
(replace the name with the record ID in the brackets)