Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
I am formating a custom expression in display field in the lookup wizard: concat( 'FROM ',dt_inicial,' TO ',dt_final)but the date fields (dt_inicial/dt_final) shows in the MySQL Format (Y-M-d). How to format it to d/M/Y in this case?
Hi,use MySQL functions to construct correct date:http://dev.mysql.com/doc/refman/5.0/en/dat...-functions.htmlHere is a sample:
concat( 'FROM ',DAYOFMONTH(dt_inicial),'/',MONTH(dt_inicial),'/',YEAR(dt_inicial),' TO ',dt_final)