Hi, How do I change the min and max value date format ie.
01/21/19 to 21/01/19
You could do this in the ETL or a beastmode using the DATE_FORMAT() function:
https://www.w3schools.com/sql/func_mysql_date_format.asp
DATE_FORMAT(`yourDateField`,'%d/%m/%y')
Thank you. fixed.