Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Nay
Contributor
Contributor

Filter Not Working on visuals

Good day All

My Data field format is "DD-MM-YYYY ", i wrote in the below code on Qlik to split Month and Year into additional fields for filtering my visuals, however the filter is not working on the newly created fields but works on the original Date field only.

 

select
datepart(year,Date) as Year,
datepart(month,Date) as Month,
datepart(day,Date) as day


From
Table Name

Labels (6)
1 Solution

Accepted Solutions
Mark_Little
Luminary
Luminary

I do not believe Dartpart is a function in Qlik and even if it is this will have created a data island, it would not be connect to the data model.

Need Something like

LOAD

Date,

YEAR(Date) as Year

...

Resident ...

View solution in original post

2 Replies
Mark_Little
Luminary
Luminary

I do not believe Dartpart is a function in Qlik and even if it is this will have created a data island, it would not be connect to the data model.

Need Something like

LOAD

Date,

YEAR(Date) as Year

...

Resident ...

Nay
Contributor
Contributor
Author

Thank you, worked perfectly 🙂