Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Qlikview Experts,
I'm trying to not show any dates for the year 2017. I did try the syntax in the Qlikview Editor as per the instruction in the previous blog - https://community.qlik.com/t5/New-to-QlikView/How-to-exclude-unwanted-year-in-Date-field/m-p/839470
But , it doesn't seem to work for me .
The syntax I tried from that Blog is Where Year(Relevant_Date) <> 2017;
Please let me know what am I doing wrong here.
Thanks & Regards,
Arun
Hi,
can you share screens shot of your work??
Regards,
Remove single inverted commas and check
Try this,
SQL SELECT *
FROM ABCDB.TTTEX_SEGMENT_WISE_DAILY_REVENUE
where Year(Relevany Date) <>'2017';
hi thanks for the reply, i tried didn't work
hi thanks for the reply, i tried didn't work
If this is connection to Oracle, then you can try this
WHERE TRUNC(RELEVANT_DATE, 'YEAR') <> '1JAN2017'