Power Query function for Date Key
A new M function that allows you to enter your 'Date' column name, confirm the way it is formatted ( "DD/MM/YY", "MM/DD/YY" , "DD/MMM/YY" and the versions with CCYY ) and applies the following
(Date.Year( DateColumn )*10000)+(Date.Month( DateColumn )*100) +Date.Day( DateColumn ))
STATUS
DETAILS
New