Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Shubham_D
Partner - Creator
Partner - Creator

Aggregation with dates having Date itself as a Dimension

Hi All,
I have Date as a dimension and that same date I have to use in measure expression for calculation, how to achieve this ? 

Chart : Combo
Dimension : Date
Measure : Count (if( DoJ < (date(Date)-30) , IDs))

In this case,  Date is same field...

1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Try like:

Count (if( DoJ < date(Date-30) , IDs))
 

View solution in original post

2 Replies
tresB
Champion III
Champion III

Try like:

Count (if( DoJ < date(Date-30) , IDs))
 

Shubham_D
Partner - Creator
Partner - Creator
Author

Hi @tresB 
Ohh, as I mentioned in post I was using the same you suggested but  "Continuous Scale" was enabled so it was behaving differently.

Thanks !!