Date formatting - Text to Date

Hello,

For a table, the input date is from a text is received as “dd/mm/yyyy”. As appsheet expect “mm/dd/yyyy” format, I’m using a text function as below.

TEXT (
MID([UID],FIND(“dob=”,[UID])+5,10) ,
“dd/mm/yyyy”
)

But its throwing a an exception saying that TEXT function with two arguments requires a temporal type and a format string

Please help.

Regards,
Senthil D

Solved Solved
0 23 5,503
1 ACCEPTED SOLUTION

Try… INDEX(EXTRACTDATES(INDEX(SPLIT([UID],“dob”),2)),1)

View solution in original post

23 REPLIES 23
Top Labels in this Space