Count cells from entire column that contain value
Macro Title:
|
Worksheet Variable:
|
Worksheet Name:
|
Column Reference:
enter the column reference from which you want to count the number of cells that contain a value |
Output Cell:
|
First Comment:
' |
Second Comment:
' |
Sub Count_cells_from_entire_column_that_contain_value()
'declare a variable
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'count the number of cells in a single column that have a value
ws.Range("E5") = Application.WorksheetFunction.CountA(ws.Range("C:C"))
End Sub
Sub Count_cells_from_entire_column_that_contain_value()
'declare a variable
Dim ws As Worksheet
Dim ws As Worksheet
Set ws = Worksheets("Analysis")
'count the number of cells in a single column that have a value
ws.Range("E5") = Application.WorksheetFunction.CountA(ws.Range("C:C"))
ws.Range("E5") = Application.WorksheetFunction.CountA(ws.Range("C:C"))
End Sub