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

Question on Simple set analysis.

Hi

The result is not coming for below set analysis.

count({<[Date error/issue discovered]={">=$(MonthStart(max([Date error/issue discovered]) <=(today())"} >}[Type of error/issue])

3 Replies
sunny_talwar

Try this:

Count({<[Date error/issue discovered]={">=$(=Date(MonthStart(Max([Date error/issue discovered])), 'DateFieldFormatHere')<=$(=Date(Today(), 'DateFieldFormatHere'))"} >}[Type of error/issue])

subathra
Partner - Contributor III
Partner - Contributor III

count({<[Date error/issue discovered]={'>=$(=MonthStart(max([Date error/issue discovered]))) <=$(=(today()))'} >}

[Type of error/issue])

crusader_
Partner - Specialist
Partner - Specialist

Hi,

First of all check Date format of [Date error/issue discovered] field and then turn everything to single view like stalwar1‌ mentioned previously or turn everything to numbers:

Count({<[Date error/issue discovered]={">=$(=Floor(MonthStart(Max([Date error/issue discovered]))))<=$(=Floor(Today()))"} >}[Type of error/issue])


Hope this helps.


Regards,

Andrei