Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
soniasweety
Master
Master

past the date

Hi all,

Tresesco B

I want to display the details

where the completedate is past from now()

means : 

is anything need to change in exP?

4 Replies
tresesco
MVP
MVP

Second parameter of interval is a format. Try like:

aggr( Interval(CompletionDate-now(),'dd:hh:mm:ss'),numb)

soniasweety
Master
Master
Author

here

       it past the now()  then display the number values

completedate
2017-08-01 03:59:59
2017-09-22 15:45:19
2017-09-22 15:46:29
2017-09-22 15:56:30
2017-08-02 18:29:59
2017-08-02 18:29:59
2017-08-02 18:29:59
2017-08-02 18:29:59
2017-08-02 18:29:59
2017-08-02 18:29:59
2017-09-05 18:38:00
2017-09-05 18:39:39
tresesco
MVP
MVP

if one numb has one date , try like:

=if(CompletionDate-today()>0,numb)


Note: Now() is performance killing, don't use it unless you really need it. If you are looking for current date, use today().

soniasweety
Master
Master
Author

thanks.  its working    but I need to check its now()/CurrentDate

thanks for suggestions towards performance.