Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
in expression edit, i want to concatenate date dim such as dd/mm/yyyy
what's about this code?
I use qlikview expression but it displays error
Yours faithfully
if you have a field with a date format, you have just to write :
date(MyDateField,'DD/MM/YYYY')
if it's a date in text format :
date#(MyDateField,'DD/MM/YYYY')
if you have three fields (year, month and day) :
makedate(YearField,MonthField,DayField)
date(Makedate(Add Parameter Here))