Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Convert Text Date to Date format

Hi,

 

I have an excel file consisting "Period" column in text format.

How can I read only the month rows (Exclude Q1 19) and convert to date?

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi Anonymous 

    In addition to  

     

    Best Regards,

    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

3 Replies

  • Anonymous , I Power Query, Create a Column Like this and remove Q(Qtr) and F(FY) Columns

     

    New Col = Text.Start([COl1],1)

     

    Then You can create date like with this given format

    Date = "01 " & [Col1]  // Mark this as date column

     

     

  • Hi,

    In the Query Editor, filter out anything starting with Q and FY.  Right click on the column and select Date.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous 

    In addition to  

     

    Best Regards,

    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.