date difference calculation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need help with this formula please
Todays Date - ReturnDueDate= difference in days * $1.00 * .01 of valueX
 
=DateDiff("d", Date(), ReturnDueDate) * .01 * valueX

There's no need to include the $1.00 in the calculation, since multiplying
by 1 won't change anything.
 
If you mean you want to calculate the number of days late (or early) and
multiply that by one percent of the value of something then the formula
would be.


DateDiff("d",[ReturnDueDate],Date()) * [ValueofX] *. 01
 
Back
Top