Milcho Dimkov
02/07/2024, 9:37 AMcustom record type
, which has a field
of type list/record pointing to Country
When I create a saved search
for this record type
, the country column returns full country names (e.g. "United States"
Is there a way to have a column showing the country code
(such as US) instead?
FYI: if I use a formula with country_field_name.id
, it will return an integer IDraghav
02/08/2024, 3:17 PMSELECT
cr.countryField,
c.id
FROM
customrecord AS cr
LEFT OUTER JOIN Country AS c ON cr.countryField = Country.uniquekey
Milcho Dimkov
02/09/2024, 8:45 AMAndrew Altringer
02/16/2024, 2:20 AMMilcho Dimkov
02/16/2024, 2:35 PMAndrew Altringer
02/16/2024, 2:36 PM