Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
jpjust
Specialist
Specialist

Filter table on date

ALL,

Sounds pretty simple but isnt working. 

I have a simple table.

TaskName          Task Created date

Task A                        2021-09-30

Task B                        2021-09-29

Now I want to display Task name where Task Created date = todays date.

So to accomplish that , on the table properties -> Data Handline -> Calculated Condition -> [Task Created]=today().

The result is the table isn't displaying anything while I expected to display the first record because today() returns 2021-09-30.

Anyone has any idea?

Thanks

1 Solution

Accepted Solutions
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hi,

May be you can use below expression on dimension.

Expression : =Aggr(Only({<[Task Created date] = {'$(=Date(Today(),'YYYY-MM-DD'))'}>}TaskName),TaskName)

Uncheck Include null values

AshutoshBhumkar_0-1633011229501.png

Thanks,

Ashutosh

View solution in original post

2 Replies
AshutoshBhumkar
Partner - Specialist
Partner - Specialist

Hi,

May be you can use below expression on dimension.

Expression : =Aggr(Only({<[Task Created date] = {'$(=Date(Today(),'YYYY-MM-DD'))'}>}TaskName),TaskName)

Uncheck Include null values

AshutoshBhumkar_0-1633011229501.png

Thanks,

Ashutosh

jpjust
Specialist
Specialist
Author

Thanks Ashutosh, that worked.