Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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