Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Based on previous input , trying to format date in Qliksense data model itself instead of Nprinting excel template as formatting does not work here even though the check box to keep source formatting is unchecked for the table.
However when i use apply map function to get the date from a table, no matter what i do it still comes out as text in both Qlik data model when exported to excel and Nprinting.
Default date format is 'MM/DD/YYYY'
Script i am using currently is (also tried just using hard coded date of 12/31/2049)
let defdate = date('12/31/2049');
NullAsValue sod__dte02,idh__dte02,[PO Manufacturing Due Date];
set Nullvalue = $(defdate);
LOAD
ApplyMap('Sales',pod_project,date($(defdate))) as [PO Manufacturing Due Date],
from ...
Not sure what i am doing wrong here.
Users have to convert the column to date every day when they receive the report which they would like to avoid.
Please help!!!!
Did you try to place the date function before the applymap, like date(applymap.......)
Did you try to place the date function before the applymap, like date(applymap.......)
That was it. Thanks!!!