Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
dilipkumard13
Contributor III
Contributor III

Qlik Sense November 2018 Issues/bugs in Set Analaysis

In Previous Versions of Qlik sense June 2018 it was working Fine.

Now i upgraded Qlik sense November 2018.

Below expression is not working.

[Year-Month]*={'>=$(=Monthstart((vMay)))'}

Please Suggest 

Labels (4)
1 Solution

Accepted Solutions
sunny_talwar

Try setting your variable like this

LET vMay = Num(MakeDate(2018, 5));

and then use it like this

[Year-Month] *= {">=$(=Date($(vMay), 'MMM-YY'))"}

or this

[Year-Month] *= {">=$(=Date(vMay, 'MMM-YY'))"}

View solution in original post

12 Replies
pradosh_thakur
Master II
Master II

Try
[Year-Month]*={">=$(=Monthstart((vMay)))"}
Learning never stops.
dilipkumard13
Contributor III
Contributor III
Author

Thank you Pradosh. i tried but not working with double quotes.

pradosh_thakur
Master II
Master II

Try
[Year-Month]*={">=$(=Monthstart(vMay))"}

 

How does vMay looks like , does it include a = or not ?

 

@sunny_talwar may help if the above doesn't work.

Learning never stops.
dilipkumard13
Contributor III
Contributor III
Author

Let vMay=Date('01-05-2018','MMM-YY')

sunny_talwar

May be try this

Let vMay = Date(MakeDate(2018, 5),'MMM-YY')
dilipkumard13
Contributor III
Contributor III
Author

Dear Sunny,

Thank you, I tried above exp. its not working.
sunny_talwar

What format is [Year-Month] in?

dilipkumard13
Contributor III
Contributor III
Author

date(monthstart([Completed Date]), 'MMM-YY') AS "Year-Month"
sunny_talwar

Can you try this

[Year-Month] *= {">=$(=Date(MakeDate(2018, 5), 'MMM-YY'))"}

We can fix the variable once we have this working