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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
farolito20
Contributor III
Contributor III

Select Query

How I can do this query in an expression in QlikView?

SELECT *

FROM Person.Password

WHERE ModifiedDate>'1996/07/23'  and ModifiedDate<'1997/03/20'

2 Replies
farolito20
Contributor III
Contributor III
Author

The load statement don't work in expressions in a sheet

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

First create variables

vStartDate = valid start date with same format as ModifiedDate

vEndDate = valid end date with same format as ModifiedDate

Now use this variables in expression

=Sum({<ModifiedDate={'>$(=vStartDate)<$(=vEndDate)'}>} Sales)

Hope thie helps you.

Regards,

Jagan.