Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

greater than condition for select in field action (Date field)

Hi,

I am trying to set a action for date field, it is working fine if i give the direct value but it is not working with greater than symbol.

Sample.png

Exprn.png

So how do can make the above to work?

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi,

Try

='>'&Date($(=Today()-7))

Regards,

Antonio

View solution in original post

5 Replies
antoniotiman
Master III
Master III

Hi,

Try

='>'&Date($(=Today()-7))

Regards,

Antonio

Anil_Babu_Samineni

Seems, You have Number format and Today() returns the Date Format as always. Can you cross check the same

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
Anonymous
Not applicable
Author

Hi

Check the Date Format once

Kushal_Chawda

try this expression

='(' & concat( distinct if([Lead Created Date]>= today()-7,chr(39)&[Lead Created Date]&chr(39)),',') & ')'

Anonymous
Not applicable
Author

Thank you very much Antonio Mancini..

It worked as expected.