Calculating Elapsed Time

Calculating Elapsed Time

Question:
Do you know an algorithm that will give me the elapsed time froma beginning and end date/times (day:hh:mm:ss)?

Answer:
The DateDiff function, included with VB 3 and 4, will give you the difference between two variants (VB3) or variables of type Date (VB4). I’ve used it quite a few times to determine if a resource for Ask the VB Pro is newer than a given date. Here is the line of code I use to return a boolean value:

   IsResourceNew = DateDiff(“d”, vNewDate, CVar(rsLinks(“LinkAddedDate”))) >= 0
This gives me the number of days vNewDate is before rsLinks(“LinkAddedDate”), both of which are of type Date.

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular