Skip to content
View arookieds's full-sized avatar
🎯
Focusing
🎯
Focusing
  • 06:22 (UTC +01:00)

Block or report arookieds

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Useful VBA code Useful VBA code
    1
    Public Function nRows(ws As Worksheet, c As Long) As Long
    2
        ' nRows return the number of rows on column 'c' from ws worksheet
    3
        nRows = ws.Cells(ws.Rows.Count, c).End(xlUp).Row
    4
    End Function
    5