Hi,
How do edit the data and time format from MM/dd/yy to dd/mm/yy? I have tried changing but to no avail.
I believe it's only possible if you have the raw query, then, you can use the function like so...
SELECT concat(day(timestamp),'/',month(timestamp),'/',year(timestamp)) as ConvertedTimestamp FROM [table]
or you could export it to csv and convert it within excel.