Private Sub CommandButton1_Click()
Dim contTotal As Long, contNegrito As Long, c As Range
For Each c In Range(Cells([C1].Value, "A"), Cells(Rows.Count, "A").End(xlUp))
contTotal = contTotal - (c <> "")
contNegrito = contNegrito + (c <> "") * (c.Font.Bold)
Next c
MsgBox Title:="CONTAGEM DE VALORES", _
Prompt:="Contagem de não vazias coluna A, linhas " & [C1].Value & " em diante: " & Chr(13) & _
"Todas: " & contTotal & Chr(13) & _
"Negrito: " & contNegrito, _
Buttons:=vbOKOnly
End Sub
Postado : 20/02/2021 6:48 pm