Forum Discussion

Fragan's avatar
Fragan
Icon for Helper III rankHelper III
6 years ago
Solved

Power Query Text Field with date to Date type field MM/YYYY

Hey,   I have a text field named "date" which obviously have dates in text format (01/2020 for ex), i want to parse those date to format MM/YYYY but i can't really figure this out using Power query...
  • amitchandak's avatar
    6 years ago

    In DAX you can have a new column like

     

    Date1 = Date(right([date],4),left([date],2),1)