I have a date format in which yyyy-mm-dd which I have to change it into mm/dd/yyyy. I want to do this to multiple columns So I don't wanna use the datetimeParse tool
Example
| Date | Date1 | Date3 |
| 2022-12-31 | 2021-12-31 | 2020-12-31 |
I tried formula to format but all they were giving me error
Output:
| Date | Date1 | Date3 |
| 12/31/2022 | 12/31/2021 | 12/31/2020 |