Answer the question
In order to leave comments, you need to log in
How to display working days as a list in Excel?
It is necessary that the start date be indicated in cell a1 by hand. In the cell b1 end. And then we need magic that in column c will display a list of all working days in this range
Answer the question
In order to leave comments, you need to log in
Sub PrintWorkDays()
Dim Counter As Long
Counter = 1
For i = Range("A1") To Range("B1")
Select Case Weekday(i)
Case 2 To 6
Cells(Counter, 3).Value = i
Counter = Counter + 1
Case Else
End Select
Next i
End Sub
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question