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: 
Not applicable

select date range

Hi all,

I have data before 11-30-2014, but i need to select data after that date so i am using below expression.

It,s not working please help on it.

Let vEnovaMinDate = 11-30-2014   {initializing variable }

count({<DateType = {invitation}, CanonicalDate = {">=$(date(=vEnovaMinDate))<=$(=max(date(CanonicalDate)))"}>}invitation_id)

can anyone help where i am going wrong

Regards,

Pramod

4 Replies
MK_QSL
MVP
MVP

Try

Count(

     {<

          DateType = {'invitation'},

          CononicalDate = {">=$(=Date(Date#(Min(vEnovaMinDate)),'MM-DD-YYYY'))<=$(=Date(Date#(Max(vEnovaMinDate)),'MM-DD-YYYY'))"}

     >}

invitation_id)

Not applicable
Author

always format date inside the variable, don't use any function directly in set analysis. After that,

CononicalDate = {">=$(vEnovaMinDate) <=$(vEnovaMaxDate)"} should work.


Important: Don't forget the white space between two variables.

Not applicable
Author

I am using like below it's wrong?

CanonicalDate = {">=$(=vEnovaMinDate) <=$(=date(today()))"}

because i need count till today from the start date.

But above is not working.

Not applicable
Author

wrong:  $(=vEnovaMinDate)

right:  $(vEnovaMinDate)


vEnovaMinDate variable must start with equal sign.