Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear all,
i would like to set a variable defining the date closest to today. in my files i also have dates in the future, so max(date) won't work.
i am looking in the direction of minizing the delta between today() and the date field. can anyone help?
many thanks
Joris
so you don't need future dates comparison, try this :
=FirstSortedValue(EffectiveDate, (If((Today()-EffectiveDate)>0,(Today()-EffectiveDate))))
Try this:
=FirstSortedValue(EffectiveDate, fabs(Today()-EffectiveDate))
Try like this
=Max({<DateFieldName={'<$(=Today()'}>} DateFieldName)
Make sure that date format is same in DateFieldName and Today().
Regards,
Jagan.
thanks,
this already works, but includes dates in the future too. what can i do to show the closest date in the past?
many thanks!
joris
so you don't need future dates comparison, try this :
=FirstSortedValue(EffectiveDate, (If((Today()-EffectiveDate)>0,(Today()-EffectiveDate))))
great! works fine!
thanks