Count cells by weekdays
Macro Title:
|
Worksheet Variable:
|
Result Variable:
|
Row Reference Variable:
|
Worksheet Name:
|
Column Reference:
enter the column reference from which you want to count by weekdays |
First Row Reference:
enter the first row reference which represents the first row of the range from which you want to count the number of cells that contain a weekday |
Last Row Reference:
enter the last row reference which represents the last row of the range from which you want to count the number of cells that contain a weekday |
Number of the weekday to count for:
enter the cell reference that captures the number of the weekday |
Output Cell:
|
First Comment:
' |
Second Comment:
' |
Sub Count_cells_by_weekdays()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
counter = 0
'count cells with the date that falls on a Wednesday
For x = 5 To 11
If Weekday(ws.Range("B" & x), 2) = ws.Range("C16") Then
counter = counter + 1
End If
Next x
ws.Range("D16") = counter
End Sub
Sub Count_cells_by_weekdays()
'declare a variable
Dim ws As Worksheet
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
counter = 0
'count cells with the date that falls on a Wednesday
For x = 5 To 11
For x = 5 To 11
If Weekday(ws.Range("B" & x), 2) = ws.Range("C16") Then
counter = counter + 1
End If
Next x
ws.Range("D16") = counter
End Sub