Oct 02, 2020 01:10 PM
Trying to auto create a unique key in a table used for tracking grazing on a cattle farm.
So my current formula is
“(Pasture & DATETIME_FORMAT(Date, ‘M/D/YYYY’)”
Where “Pasture” and “Date” are both fields in the table.
Any help?
Oct 02, 2020 02:06 PM
By putting the whole formula in quotes you’re telling Airtable to literally type “DATETIME_FORMAT” and not process the function. If you take the quotes and parenthesis at the beginning away it should work:
Pasture & DATETIME_FORMAT(Date, 'M/D/YYYY')
If you want to add a space between the two:
Pasture & ' ' & DATETIME_FORMAT(Date, 'M/D/YYYY')
Oct 02, 2020 04:37 PM
If needs unique number you can use recordID
Pasture&’ ‘&DATETIME_FORMAT(Date, ‘M/D/YYYY’)&’ - ID=’&RECORD_ID()