Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I try to got last sales date:
=Max({$<[SalesQuantity]={'>0'}>}TransDate) - Doesn't work
=Max({$<[SalesQuantity]={'=0'}>}TransDate) - Doesn't work
=Max({$<[SalesQuantity]={0}>}TransDate) - Work fine, but
How to get the maximum date where SalesQuantity> 0
Try this out:
Max({$<[SalesQuantity]={">0"}>}TransDate)
I tried Max({$<[SalesQuantity]={">0"}>}TransDate)
But it doesn't work
Did you try it with double quotes?
And what about this?
Max({$<[SalesQuantity]={"=Sum(SalesQuantity)>0"}>}TransDate)
What about this?
FirstSortedValue(TransDate,-Aggr(Sum(SalesQuantity)>0,TransDate))
Or
Max( Aggr (If (Sum(SalesQuantity)>0,TransDate),TransDate ) )
It's an important thing to know...