Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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...
Try like:
Count (if( DoJ < date(Date-30) , IDs))
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 !!