Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
noman212
Creator III
Creator III

Set Analysis Not working

hi Friends,

i have a speedo meter which display record on current day basis it was working fine in project but when i modified the project and add 1 field its shows 0 counts inspite of 251.

set analysis used in speedometer.

=Count ({<CalendarDate={'$(=max(CalendarDate))'} >} proposal)

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

May be because the Max(CalendarDate) have 0 data...

Try

Create a Straight Table with

Dimension

CalendarDate


Expression

COUNT(proposal)


Sort By CalendarDate descending order and go to presentation tab and untick suppress zero values..

let me know what is the value coming for max CalendarDate

If it is Zero, you can try below


=Count({<CalendarDate = {'$(=Date(Max(CalendarDate)-1))'}>}proposal)


View solution in original post

2 Replies
MK_QSL
MVP
MVP

May be because the Max(CalendarDate) have 0 data...

Try

Create a Straight Table with

Dimension

CalendarDate


Expression

COUNT(proposal)


Sort By CalendarDate descending order and go to presentation tab and untick suppress zero values..

let me know what is the value coming for max CalendarDate

If it is Zero, you can try below


=Count({<CalendarDate = {'$(=Date(Max(CalendarDate)-1))'}>}proposal)


noman212
Creator III
Creator III
Author

Thanks alot for your solution , when i put Date before MAX in set expression its work fien but i dnt know why it happened...