Forum Discussion

1 Reply

  • Hi Raul_Cristobal 

     

    Download example PBIX file

     

    In Power Query, add a new Custom Column with this code

     

    = Date.From("1/" & Text.From([CDG_MES]) & "/" & Text.From([CDG_ANNO]))

     

     

    You can also do it in DAX with this 

     

    Date = DATE([CDG_ANNO], [CDG_MES], 1)

     

     

     

    regards

     

    Phil