I'm specifically trying to convert string in Column A : yyyymmdd
to dd/mm/yyyy
date format using Power Query Editor in Power BI. I can already perform this in Excel using the formula below:
Any ideas
Excel
=DATE(LEFT(A2,4),MID(A2,5,2),RIGHT(A2,2))