Jul 22, 2024 11:14 AM
Hi all, I was wondering if you could help me create a formula that would output an alphanumeric ID based on variables in other cells in the row. I'd like to create an ID that include:
So, as an example, ZDJS1411.
Thanks so much community!
Solved! Go to Solution.
Jul 23, 2024 02:41 AM
Does this look right?
SWITCH(
{Cell A},
'xYx', 'Z',
'YxY', 'ZD'
) &
LEFT(
{First name},
1
) &
LEFT(
Surname,
1
)&
DATETIME_FORMAT(
DOB,
"DDMM"
)
Jul 23, 2024 02:41 AM
Does this look right?
SWITCH(
{Cell A},
'xYx', 'Z',
'YxY', 'ZD'
) &
LEFT(
{First name},
1
) &
LEFT(
Surname,
1
)&
DATETIME_FORMAT(
DOB,
"DDMM"
)
Jul 23, 2024 08:04 AM
Wow... Yes, that absolutely does! Thanks so much Adam.