
Signature
KARL DEWEY
Build a little - Test a little
> How would I add a date to a stored date. For instances... I have a log table
> that has a bunch of dates I want calculate another date in an upcoming date.
[quoted text clipped - 6 lines]
>
> ??
What if I want to take a date from another field and then add to it. In my
case I am taking a date from a logtable, adding a service interval from
another table, and then I want it to display in a current field.
> DateAdd("x", y, [YourDateField])
> "x" ----
[quoted text clipped - 18 lines]
> >
> > ??
KARL DEWEY - 17 Oct 2007 17:31 GMT
You can supply the auguments from other tables.
DateAdd([Table_X].[FIELD1], [Table_Y].[FIELD1], [YourDateField])

Signature
KARL DEWEY
Build a little - Test a little
> What if I want to take a date from another field and then add to it. In my
> case I am taking a date from a logtable, adding a service interval from
[quoted text clipped - 22 lines]
> > >
> > > ??