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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. chayes1964

    Calculating Dates in Access

    I used this simple code to calculate the difference between the current date and another date for several records in an Access table: Option Explicit Function GetElapsedDays(interval) Dim days As Long days = Int(CSng(interval)) GetElapsedDays = days & " Days" End...
  2. chayes1964

    Calculating the number of days between dates

    I have a similar problem. I used this simple code to calculate the difference between the current date and another date for several records in an Access table: Option Explicit Function GetElapsedDays(interval) Dim days As Long days = Int(CSng(interval)) GetElapsedDays = days &...

Part and Inventory Search

Back
Top