Jan 06, 2024 10:20 AM
Hi, I would like to extract only the 2nd character of a data field, to concatenate with another complete data field.
Can this be done please? Many thanks.
Solved! Go to Solution.
Jan 06, 2024 12:20 PM
Hi,
MID({Data}, 2, 1) or RIGHT(LEFT({Data},2))
some array data types like Lookup field, require converting to string like CONCATENATE({Data}) instead of {Data}
Jan 06, 2024 12:20 PM
Hi,
MID({Data}, 2, 1) or RIGHT(LEFT({Data},2))
some array data types like Lookup field, require converting to string like CONCATENATE({Data}) instead of {Data}
Jan 07, 2024 04:35 AM
Fantastic. That works perfectly, thank you.
Follow-up Q if I may: Is it possible to force it to return only that character in lower-case?
Jan 08, 2024 06:51 AM
Sure. Just wrap your whole formula in LOWER( )
Jan 09, 2024 05:30 AM
Brilliant! Thank you. 🙏