Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Problem: I Want to scheduled the N-printing Report on Daily basis last 10 working days of the month.
Please guide me on Qlik N Printing Report Scheduling Side.
Thanks in Advanced !
Regards
Vinayak Rastogi
Hi,
nprinting 17.2 is not supported-please update it to the currently supported version.
once you upgrade you can setup your task to be triggered every day and add condition to it where you can refer to a qlik sense variable which can return true or false based on current day (=today()) function. You can have a logic implemented in some sort of calendar, or directly set it in script or have variable with = sign and formula like:
=if(floor(monthend(today()))-floor(today())<11,1,0)
that variable will return 1 for last 10 days of each month and can be used in condition where variable = 1
So to summerize you will trigger task every day but by implementing condition it will be executed only on last 10 days. Please read about conditions, triggers and variables on https://help.qlik.com
cheers
Hi,
nprinting 17.2 is not supported-please update it to the currently supported version.
once you upgrade you can setup your task to be triggered every day and add condition to it where you can refer to a qlik sense variable which can return true or false based on current day (=today()) function. You can have a logic implemented in some sort of calendar, or directly set it in script or have variable with = sign and formula like:
=if(floor(monthend(today()))-floor(today())<11,1,0)
that variable will return 1 for last 10 days of each month and can be used in condition where variable = 1
So to summerize you will trigger task every day but by implementing condition it will be executed only on last 10 days. Please read about conditions, triggers and variables on https://help.qlik.com
cheers
Apologies.
i just realized your logic needs to be based on working days, therefore i guess you need to implement some sort of calendar and make your logic based on it.
cheers