Return the Date of the Next Specified Day of the Week

Return the Date of the Next Specified Day of the Week

This code will return the date of the next weekday that you specify.For example, assuming today is July 4th, 2001 and you need to know the date for next Monday, the line:

 dDate = NextDay(Monday)


will return ’07/09/2001′.

 Public Enum DayOfWeek  Sunday = 1  Monday = 2  Tuesday = 3  Wednesday = 4  Thursday = 5  Friday = 6  Saturday = 7End EnumPublic Function NextDay(ByVal vuDay As DayOfWeek) As Date  Dim liToday As Integer  liToday = Weekday(Date)  Select Case liToday    Case vuDay      NextDay = Format(DateAdd("d", 7, Date), "mm/dd/yyyy")    Case Is < vuDay      NextDay = Format(DateAdd("d", vuDay - liToday, Date), "mm/dd/yyyy")    Case Is > vuDay      NextDay = Format(DateAdd("d", 7 - liToday + vuDay, Date),"mm/dd/yyyy")  End SelectEnd Function

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

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved