VBA: Count the rows in a Selection
If you ever need to count the number of rows that were selected, use Selection.Rows.Count
Put this in a module:
Public Sub CountMyRows() MsgBox Selection.Rows.Count End Sub
Leave a comment
| Trackback

