Results 1 to 5 of 5

Thread: How to remove Sum OF from Microsoft Excel

  1. #1
    Join Date
    Jan 2012
    Posts
    70

    How to remove Sum OF from Microsoft Excel

    In 2003, we had a formatting option that would globally remove Sum Of from the pivot table values. I like that feature. However, I can't seem to find the same thing in 2007. I can manually change them, but that's no fun, especially if I have a bunch of values. Does anyone have solution to this question?

  2. #2
    Join Date
    Jul 2011
    Posts
    640

    Re: How to remove Sum OF from Microsoft Excel

    I don't know of any option in Excel 2003 that removes the 'Sum Of' from data fields. Maybe you had a macro that changed the captions, and it was lost when you upgraded to 2007. You could create another macro, to run in Excel 2007.

  3. #3
    Join Date
    Aug 2011
    Posts
    695

    Re: How to remove Sum OF from Microsoft Excel

    The auto format in Excel 2003 would enable the functionality I'm currently pursuing in 2007. It also enabled the capability to go between a classic format and the provided auto formats. No macros required. The Pivot table autoformat functionality in Excel 2003 would do what I'm discussing. For example, the autoformat would display "Expenses" versus "Sum of Expenses". There was 20 autoformats available in addition to Classic and None.

  4. #4
    Join Date
    Aug 2011
    Posts
    564

    Re: How to remove Sum OF from Microsoft Excel

    The AutoFormat command had some features that weren't accessible through other methods, like changing the captions to the same as the source name, and altering the heading rows. AutoFormat has been replaced by PivotTable Styles in Excel 2007, and they don't make the same kinds of changes to the pivot table structure. If you can run a macro, you could use something like this:
    Code:
    Sub ChangeDataCaptions()
    Dim pt As PivotTable
    Dim pf As PivotField
    Set pt = ActiveSheet.PivotTables(1)
    For Each pf In pt.DataFields
    If Left(pf.Caption, 6) = "Sum of" Then
    pf.Caption = pf.SourceName & " "
    End If
    Next pf
    End Sub

  5. #5
    Join Date
    Jul 2011
    Posts
    440

    Re: How to remove Sum OF from Microsoft Excel

    There is a common solution which I think can help you. For that just right click on the pivot table and choose Field Settings. In that you can modify the text and display the same as you want by amending the Name field.

Similar Threads

  1. Need help to remove shared workbook protection in Microsoft Excel
    By Mathrubootham in forum MS Office Support
    Replies: 4
    Last Post: 25-01-2012, 06:12 PM
  2. How to remove characters between Cell values in Microsoft Excel
    By Limitless in forum MS Office Support
    Replies: 2
    Last Post: 25-01-2012, 12:08 PM
  3. How to remove the decimal point for cell in Microsoft Excel
    By Kungfu Pandey in forum MS Office Support
    Replies: 1
    Last Post: 14-01-2012, 06:20 PM
  4. How to remove Vertical Page Break in Microsoft Excel
    By Lanka Boy in forum MS Office Support
    Replies: 1
    Last Post: 14-01-2012, 05:42 PM
  5. How to Remove special characters from Microsoft Excel
    By Celestial in forum MS Office Support
    Replies: 6
    Last Post: 13-01-2012, 05:02 PM

Tags for this Thread

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
  •  
Page generated in 1,714,017,910.76435 seconds with 17 queries