Feb 11, 2019 05:18 AM
Hi,
I am looking up a value from a linked record which works fine, however, when I tried to use UPPER({Look Up})
in another field I just get an error.
I am just looking to understand why that would not work and am I missing something simple.
Craig
Feb 11, 2019 05:56 AM
It works for me, ¿what type of field is the one where your put UPPER function?
Feb 11, 2019 06:11 AM
Hi,
I was using the UPPER()
on a look-up from the linked record, not directly on the linked field, would that make a difference?
Feb 11, 2019 06:19 AM
Oh excuse me, I think the problem is that the lookup returns an Array, and UPPER()
expects a String.
You can ‘stringify’ if by adding &''
to the field name, or using the CONCATENATE()
function.
Feb 11, 2019 06:21 AM
Perfect! Thank you for that :thumbs_up: