Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I'm wondering if Qilk has something similar to excel where by
I'm trying to define targeted date from start date.
I know in excel its as easy as
= startDate + <Number>
Basically trying to check if Priority = low/medium/high/critical of a record and calculate the targeted date based on when it started.
=if({<{[Priority*]={'Low'}>}[Problem ID*+],Date(Num(Timestamp#("Submit Date",'DD/MM/YYYY hh:mm:ss'))+365),
if({<{[Priority*]={'Medium'}>}[Problem ID*+],Date(Num(Timestamp#("Submit Date",'DD/MM/YYYY hh:mm:ss'))+180),
if({<{[Priority*]={'High'}>}[Problem ID*+],Date(Num(Timestamp#("Submit Date",'DD/MM/YYYY hh:mm:ss'))+90),
if({<{[Priority*]={'Critical'}>}[Problem ID*+],Date(Num(Timestamp#("Submit Date",'DD/MM/YYYY hh:mm:ss'))+30))))
What about in qlik and also trying to make this as a master dimension however keeps giving error in expression: "Error in expression: ')' expected"
yup it works however what i do really want to achieve is being able to have a table display the new Date in a cell based on the above and not display the count, thought abt using if but would pick match work as well? or is there any other ways?