Properties for Worksheets

Written by Allen Wyatt (last updated February 20, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


1

Laurie knows how to view properties of an Excel workbook. What she would like to do, however, is to view similar properties relative to individual worksheets. For instance, she wonders if there is a way to view properties such as date created, date modified, author, or "last modified by" for individual worksheets.

Unfortunately, Excel doesn't keep track of such information for worksheets. The only workaround we've been able to figure out is to develop your own record of information about the worksheets in the workbook. An obvious way to do develop a Workbook_SheetChange event handler. The following is an example of one you could add to the ThisWorkbook object in the Visual Basic Editor:

Private Sub Workbook_SheetChange(ByVal ws As Object, ByVal Target As Range)
    Dim s As Worksheet
    Dim J As Integer
    Dim FoundIt As Boolean

    On Error Resume Next
    Set s = Worksheets("Stats")
    On Error GoTo 0
    Application.EnableEvents = False
    If s Is Nothing Then
        ' Stats worksheet did not exist
        Set s = Worksheets.Add(After:=Worksheets(Worksheets.Count))
        s.Name = "Stats"
        s.Range("A1") = "Worksheet"
        s.Range("B1") = "Creator"
        s.Range("C1") = "Last Modified"
        s.Range("D1") = "Modifed By"
        
        With s.Range("A1:D1")
            .Font.Bold = True
            .Borders(xlEdgeBottom).LineStyle = xlContinuous
            .Borders(xlEdgeBottom).Weight = xlThin
        End With

        s.Range("A2") = s.Name
        s.Range("B2") = s.CustomProperties.Creator
        s.Range("C2") = Format(Now, " mm/dd/yyyy  hh:mm am/pm")
        s.Range("D2") = Application.UserName
    End If
    J = 2
    FoundIt = False
    While (s.Cells(J, 1) <> "")
        If s.Cells(J, 1) = ws.Name Then
            FoundIt = True
            s.Cells(J, 3) = Format(Now, " mm/dd/yyyy  hh:mm am/pm")
            s.Cells(J, 4) = Application.UserName
        End If
        J = J + 1
    Wend
    If Not FoundIt Then
        ' Worksheet name not found
        s.Cells(J, 1) = ws.Name
        s.Cells(J, 2) = ws.CustomProperties.Creator
        s.Cells(J, 3) = Format(Now, " mm/dd/yyyy  hh:mm am/pm")
        s.Cells(J, 4) = Application.UserName
    End If
    ws.Activate
    Application.EnableEvents = True
End Sub

The event handler is triggered anytime you make a change in the workbook. It first checks to see if there is a worksheet named Stats. If not, then the worksheet is created, and some rudimentary information is added to it. The handler looks in the Stats worksheet to determine if the data there includes a row for the worksheet on which a change occurred. If not, then a row is added, but if so, the information in the row is updated.

The handler only tracks four pieces of information—the worksheet name, the creator, the date the last change was made, and the user name of who made the change. (The Creator property indicates a numeric value related to the program that created the worksheet. It isn't terribly helpful for humans, and I included it as an illustrative example of how information can be stored.)

Remember, this is only a workaround and you should consider carefully what type of information you want to track for your worksheets. You can then modify the code to reflect that desire.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (7542) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Weird Hyperlink Behavior

When you insert a hyperlink, you expect it to look like, well, a hyperlink. But what if it really looks like some strange ...

Discover More

Specifying Your Target Monitor

When you create a worksheet that is destined for viewing on the Web, you will want to specify the monitor resolution you ...

Discover More

Identifying Missing Numbers in a Consecutive Series

If you have a series of consecutive numbers in a column, you may want to know if it really is consecutive. (In other ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Moving from Sheet to Sheet

Need to move quickly through the worksheets in a workbook? Learn the keyboard shortcuts and you can make short work of ...

Discover More

Freezing Top Rows and Bottom Rows

Freezing the top rows in a worksheet so that they are always visible is easy to do. Freezing the bottom rows is not so ...

Discover More

Switching Headers in a Frozen Row

Excel allows you to "freeze" rows in your worksheet. What if you want the rows that are frozen to change as you scroll ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 2 + 8?

2019-04-15 04:45:47

David Shepherd

The current user's username can be captured using the Environ function:

Dim sName As String

sName = Environ("UserName")


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.