Hi guys,
My app is reading from an excel spreadsheet and some of the data in a date column is listed as TBC or second half of 2023 while the majority is in date format.
I was using the formula:
Text(ThisItem.Bronze, "dd/mm/yyyy", "en-GB")
To get the date showing right but obviously this isn't working for the mixed format data.
I tried this, but it didnt work:
If(IsNumeric(ThisItem.Bronze),Text(ThisItem.Bronze, "dd/mm/yyyy", "en-GB"),Text(ThisItem.Bronze))
Any pointers?
Cheers