Change Date format
There is an error as I cannot run this, can anyone help?// Function to reformat dates to dd/mm/yyyy
colName = Column Dialog( "Select Date Column" );
reformatDateColumn = Function({dt, colName},
dt = Current DataTable();If( Column( dt, colName ) == Empty(),
Throw( "The selected column does not exist in the current data table." );
);// Function to identify and reformat the date
formatDate = Function({date...