+ Reply to Thread
Results 1 to 4 of 4

List all formulas used on a spreadsheet

Hybrid View

  1. #1
    Registered User
    Join Date
    08-13-2020
    Location
    Sydney
    MS-Off Ver
    2010
    Posts
    78

    List all formulas used on a spreadsheet

    Hello everyone,

    Is it possible to list all the formulas - including custom formulas - on a given spreadsheet ?

  2. #2
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: List all formulas used on a spreadsheet

    Toggle on and off?
    Sub Show_Hide_Formulas()
    If ActiveWindow.DisplayFormulas = False Then
        ActiveWindow.DisplayFormulas = True
            Else
        ActiveWindow.DisplayFormulas = False
    End If
    End Sub
    or go to the Formulas tab and click on Show Formulas.

  3. #3
    Registered User
    Join Date
    08-13-2020
    Location
    Sydney
    MS-Off Ver
    2010
    Posts
    78

    Re: List all formulas used on a spreadsheet

    Thanks jolivanes.

    But, this is not what I was after

    I want to list the formulas in the spreadsheet rather then display / view the formulas.

    So, the list should have the list of cells where there is formulas and the formulas used on those cells.

  4. #4
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,692

    Re: List all formulas used on a spreadsheet

    Change references as required. Maybe put the result into an empty sheet instead.
    Sub Maybe()
    Dim c As Range
    For Each c In ActiveSheet.UsedRange.SpecialCells(xlCellTypeFormulas)
        Cells(Rows.Count, 15).End(xlUp).Offset(1).Value = c.Address    '< Change the 15 to an empty column Number
        Cells(Rows.Count, 17).End(xlUp).Offset(1).Value = "'" & c.Formula    '< Change the 17 to another empty column Number
    Next c
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 5
    Last Post: 01-07-2019, 11:42 PM
  2. Formulas working on one spreadsheet but not on another
    By kvanhinsbergh in forum Excel General
    Replies: 2
    Last Post: 11-01-2018, 11:23 AM
  3. Updating list from new spreadsheet to master spreadsheet
    By Kimberlyccr1 in forum Excel General
    Replies: 2
    Last Post: 01-09-2017, 02:25 PM
  4. Some formulas don't seem to be working within spreadsheet
    By kevwilsondj in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 08-18-2015, 04:47 PM
  5. Time Sheet (Tie in extra spreadsheet to existing spreadsheet with formulas)
    By Eddie Elvis in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 05-12-2013, 04:27 AM
  6. Replies: 2
    Last Post: 02-03-2013, 02:43 AM
  7. Looking for a way to paste formulas into a spreadsheet
    By geoffjb in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-29-2009, 11:18 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1