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: 
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
tresesco
MVP
MVP

Try like:

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

View solution in original post

2 Replies
tresesco
MVP
MVP

Try like:

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

Shubham_D
Partner - Creator
Partner - Creator
Author

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

Thanks !!