Count cells if greater than or equal to

Macro Title:
Worksheet Variable:
Worksheet Name:
Range Reference:
range from which you want to count the number of cells that contain a value greater than or equal to a specific value
Cell Reference of specific value:
enter the cell reference that captures the value that you want to count for if a cell contains a value greater than or equal to this
Output Cell:
First Comment:

'
Second Comment:

'
Sub Count_cells_if_greater_than_or_equal_to()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'apply the formula to count the cells that have a value greater than or equal to the value in cell (C5)
ws.Range("E8") = Application.WorksheetFunction.CountIf(ws.Range("C8:C14"), ">=" & ws.Range("C5"))

End Sub

Sub Count_cells_if_greater_than_or_equal_to()
'declare a variable

Dim ws As Worksheet

Set ws = Worksheets("Analysis")
'apply the formula to count the cells that have a value greater than or equal to the value in cell (C5)

ws.Range("E8") = Application.WorksheetFunction.CountIf(ws.Range("C8:C14"), ">=" & ws.Range("C5"))

End Sub

Sub Count_cells_if_greater_than_or_equal_to()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'apply the formula to count the cells that have a value greater than or equal to the value in cell (C5)
ws.Range("E8") = Application.WorksheetFunction.CountIf(ws.Range("C8:C14"), ">=" & ws.Range("C5"))

End Sub