Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How do we find number of days between two dates,let suppose from 01/09/2014 to current date.
any suggestions
Thanks
even
today() - '01/09/2014'
works, if the date string matches your DateFormat variable.
date(date#('01/09/2014','DD/MM/YYYY') - today()
Hi Swathi,
Use networkingday() function
eg: networkingday(Startdate,enddate)
or
today() - date#('01/09/2014','DD/MM/YYYY')
to get a positive number of days
regards
Marco
even
today() - '01/09/2014'
works, if the date string matches your DateFormat variable.