Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form has due date Table does not

Status
Not open for further replies.

dpepper

Technical User
Jul 19, 2005
12
US
Hi,

I made a database and the "Forms" I have a due date plugged in to add 45 days from the date info entered. In table view I have no due dates listed. I tried to put in a formula but I'm either doing it wrong or putting it in the wrong spot.

This is in the control source in the data tab Design View Forms and it works great.

=DateAdd("d",+45,[ Date Entered])

Can I or where can I add this information in the Table to get the date listed?

Sincerely,
Dolores
 
Dont't store calculated/derived values in a table but retrieve them with a query:
SELECT *, [Date Entered]+45 As [Due Date]
FROM yourTable

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top