Count cells by weekends

Macro Title:
Worksheet Variable:
Result Variable:
Row Date Reference Variable:
Row Weekday and Output Reference Variable:
Worksheet Name:
Column Reference:
enter the column reference from which you want to count by days from the weekend
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 weekend
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 weekend
First Row Reference:
enter the first row reference which represents the first row which captures the weekend day number and the output
Last Row Reference:
enter the last row reference which represents the last row of the range which the weekend day number and output
Column Reference of weekday number:
enter the column reference that captures the number of the weekend day
Output Column Reference:
First Comment:

'
Second Comment:

'
Third Comment:

'
Sub Count_cells_by_weekends()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'specify the row that captures the weekends for which to count and the row where to return the output
For y = 14 To 15
counter = 0
'count cells with the date that represents each weekend
For x = 5 To 11
If Weekday(ws.Range("B" & x), 2) = ws.Range("C" & y) Then
counter = counter + 1
End If
Next x
ws.Range("D" & y) = counter
Next y

End Sub

Sub Count_cells_by_weekends()
'declare a variable

Dim ws As Worksheet

Set ws = Worksheets("Analysis")
'specify the row that captures the weekends for which to count and the row where to return the output

For y = 14 To 15

counter = 0
'count cells with the date that represents each weekend

For x = 5 To 11

If Weekday(ws.Range("B" & x), 2) = ws.Range("C" & y) Then
counter = counter + 1
End If
Next x
ws.Range("D" & y) = counter
Next y

End Sub

Sub Count_cells_by_weekends()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'specify the row that captures the weekends for which to count and the row where to return the output
For y = 14 To 15
counter = 0
'count cells with the date that represents each weekend
For x = 5 To 11
If Weekday(ws.Range("B" & x), 2) = ws.Range("C" & y) Then
counter = counter + 1
End If
Next x
ws.Range("D" & y) = counter
Next y

End Sub