Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Try like below
COUNT({$<DELIVERY_DATE = {">04-dec-2018"}>} ITEM_NAME)
Assigning values must be equal to ur date format (DD-mmm-YYYY) or (DD-MMM-YYYY).
Even though Data type is Date , what is the date format in db?? You can create a list box with delivery date as field and find ur date format and use those date format in set analysis.
Or, you can try like this
Load Date(Delivery_Date) as Delivery_Date from urSourcetable;
After that, you can try in front end like
COUNT({$<DELIVERY_DATE = {">04/12/2018"}>} ITEM_NAME)
Hope it helps
Thank you for your time.
My source database table shows it as 04-dec-2018
I have changed my script editor in QLIK to SET DateFormat='DD-MMM-YYYY'; however this still does not work.
Any help will be amazing
Looks like issue not with expression.. some where you are doing mistake .
What is your actual date format ?
What is the error your facing ?
Is data available for greater than this date?
Could you please share some sample data to test the same ?
Try like below
COUNT({$<DELIVERY_DATE = {">04-dec-2018"}>} ITEM_NAME)
Assigning values must be equal to ur date format (DD-mmm-YYYY) or (DD-MMM-YYYY).