A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Removing "Sum of" from pivot tables



 
 
Thread Tools Display Modes
  #1  
Old June 27th, 2008, 08:03 PM posted to microsoft.public.excel.setup
Russ
external usenet poster
 
Posts: 178
Default Removing "Sum of" from pivot tables

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?

Thanks

  #2  
Old June 28th, 2008, 12:17 AM posted to microsoft.public.excel.setup
MartinW[_2_]
external usenet poster
 
Posts: 167
Default Removing "Sum of" from pivot tables

Hi Russ,

I don't know which command you mean but maybe one
of these sites might help you out.

http://www.rondebruin.nl/0307commands.htm
http://office.microsoft.com/en-us/he...491511033.aspx

HTH
Martin


"Russ" wrote in message
...
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?

Thanks



  #3  
Old June 28th, 2008, 10:09 AM posted to microsoft.public.excel.setup
postbox49
external usenet poster
 
Posts: 1
Default Removing "Sum of" from pivot tables


I can't help but I'd love to know how to access this in Excel 2003!
Its not an option I am aware of.

Mike



On Jun 27, 8:03*pm, Russ wrote:
In 2003, we had a formatting option that would globally remove Sum Of from
the pivot table values. *I like that feature. *However, I cant seem to find
the same thing in 2007. *I can manually change them, but thats no fun,
especially if I have a bunch of values. *

Does anyone have solution to this question?

Thanks


  #4  
Old June 28th, 2008, 11:42 AM posted to microsoft.public.excel.setup
Roger Govier[_3_]
external usenet poster
 
Posts: 2,297
Default Removing "Sum of" from pivot tables

Hi Russ

I am totally unaware of any in built function in XL2003 that would do this,
and there is no such function in XL2007.
However, the following code will achieve what you want.

Sub ChangePTName()
Dim pt As PivotTable, pf As PivotField, ws As Worksheet, i As Long
Application.ScreenUpdating = False
Set ws = ActiveSheet
For i = 1 To ws.PivotTables.Count
Set pt = ws.PivotTables(i)
pt.ManualUpdate = True
For Each pf In pt.DataFields
If pf.Function = xlSum Then
If Left(pf.Caption, 6) = "Sum of" Then
pf.Caption = Right(pf.Caption, Len(pf.Caption) - 6)
End If
End If
Next
pt.ManualUpdate = False
Next i
Application.ScreenUpdating = True
End Sub

Copy the Code above
Alt+F11 to invoke the VB Editor
InsertModule
Paste code into white pane that appears
Alt+F11 to return to Excel

To use
Select sheet containing the PT's
Alt+F8 to bring up Macros
Highlight ChangePTName
Run

--
Regards
Roger Govier

"Russ" wrote in message
...
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?

Thanks

  #5  
Old June 28th, 2008, 07:10 PM posted to microsoft.public.excel.setup
Russ
external usenet poster
 
Posts: 178
Default Removing "Sum of" from pivot tables

Thanks. I will give this a try.

To all, 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.

This is what I'm looking for. My users don't need to see "Sum of". That's
obvious to them. These can be manually removed, but there should be a global
functionality that was in Excel 2003.

"Roger Govier" wrote:

Hi Russ

I am totally unaware of any in built function in XL2003 that would do this,
and there is no such function in XL2007.
However, the following code will achieve what you want.

Sub ChangePTName()
Dim pt As PivotTable, pf As PivotField, ws As Worksheet, i As Long
Application.ScreenUpdating = False
Set ws = ActiveSheet
For i = 1 To ws.PivotTables.Count
Set pt = ws.PivotTables(i)
pt.ManualUpdate = True
For Each pf In pt.DataFields
If pf.Function = xlSum Then
If Left(pf.Caption, 6) = "Sum of" Then
pf.Caption = Right(pf.Caption, Len(pf.Caption) - 6)
End If
End If
Next
pt.ManualUpdate = False
Next i
Application.ScreenUpdating = True
End Sub

Copy the Code above
Alt+F11 to invoke the VB Editor
InsertModule
Paste code into white pane that appears
Alt+F11 to return to Excel

To use
Select sheet containing the PT's
Alt+F8 to bring up Macros
Highlight ChangePTName
Run

--
Regards
Roger Govier

"Russ" wrote in message
...
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?

Thanks

  #6  
Old June 28th, 2008, 07:11 PM posted to microsoft.public.excel.setup
Russ
external usenet poster
 
Posts: 178
Default Removing "Sum of" from pivot tables

Thanks for the references. I'll check them out.

To all, 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.

This is what I'm looking for. My users don't need to see "Sum of". That's
obvious to them. These can be manually removed, but there should be a global
functionality that was in Excel 2003.


"MartinW" wrote:

Hi Russ,

I don't know which command you mean but maybe one
of these sites might help you out.

http://www.rondebruin.nl/0307commands.htm
http://office.microsoft.com/en-us/he...491511033.aspx

HTH
Martin


"Russ" wrote in message
...
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?

Thanks




  #7  
Old June 28th, 2008, 07:12 PM posted to microsoft.public.excel.setup
Russ
external usenet poster
 
Posts: 178
Default Removing "Sum of" from pivot tables

Hi Martin,

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.

Try one of these and you'll see what I'm talking about.

Thanks.

Russ

"MartinW" wrote:

Hi Russ,

I don't know which command you mean but maybe one
of these sites might help you out.

http://www.rondebruin.nl/0307commands.htm
http://office.microsoft.com/en-us/he...491511033.aspx

HTH
Martin


"Russ" wrote in message
...
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?

Thanks




  #8  
Old June 29th, 2008, 05:05 PM posted to microsoft.public.excel.setup
Roger Govier[_3_]
external usenet poster
 
Posts: 2,297
Default Removing "Sum of" from pivot tables

Hi Russ

Since I seldom, if ever, use Autoformat, I was totally unaware that it would
remove the "Sum of".
Thanks for pointing that out.
The macro I posted should achieve what you want

You will note that the macro leaves a space in front of the field name.
That is quite deliberate, as you cannot have a PT field name the same as a
Source data field name in the Data area - the reason why Sum of and Count of
etc. are added in the first instance.
You can easily amend the code to deal with Count of etc., should you have
the need.
--
Regards
Roger Govier

"Russ" wrote in message
...
Thanks. I will give this a try.

To all, 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.

This is what I'm looking for. My users don't need to see "Sum of".
That's
obvious to them. These can be manually removed, but there should be a
global
functionality that was in Excel 2003.

"Roger Govier" wrote:

Hi Russ

I am totally unaware of any in built function in XL2003 that would do
this,
and there is no such function in XL2007.
However, the following code will achieve what you want.

Sub ChangePTName()
Dim pt As PivotTable, pf As PivotField, ws As Worksheet, i As Long
Application.ScreenUpdating = False
Set ws = ActiveSheet
For i = 1 To ws.PivotTables.Count
Set pt = ws.PivotTables(i)
pt.ManualUpdate = True
For Each pf In pt.DataFields
If pf.Function = xlSum Then
If Left(pf.Caption, 6) = "Sum of" Then
pf.Caption = Right(pf.Caption, Len(pf.Caption) - 6)
End If
End If
Next
pt.ManualUpdate = False
Next i
Application.ScreenUpdating = True
End Sub

Copy the Code above
Alt+F11 to invoke the VB Editor
InsertModule
Paste code into white pane that appears
Alt+F11 to return to Excel

To use
Select sheet containing the PT's
Alt+F8 to bring up Macros
Highlight ChangePTName
Run

--
Regards
Roger Govier

"Russ" wrote in message
...
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?

Thanks

  #9  
Old June 30th, 2008, 08:31 PM posted to microsoft.public.excel.setup
Russ
external usenet poster
 
Posts: 178
Default Removing "Sum of" from pivot tables

Thanks. I'll give this a whirl.

Cheers,

Russ

"Roger Govier" wrote:

Hi Russ

Since I seldom, if ever, use Autoformat, I was totally unaware that it would
remove the "Sum of".
Thanks for pointing that out.
The macro I posted should achieve what you want

You will note that the macro leaves a space in front of the field name.
That is quite deliberate, as you cannot have a PT field name the same as a
Source data field name in the Data area - the reason why Sum of and Count of
etc. are added in the first instance.
You can easily amend the code to deal with Count of etc., should you have
the need.
--
Regards
Roger Govier

"Russ" wrote in message
...
Thanks. I will give this a try.

To all, 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.

This is what I'm looking for. My users don't need to see "Sum of".
That's
obvious to them. These can be manually removed, but there should be a
global
functionality that was in Excel 2003.

"Roger Govier" wrote:

Hi Russ

I am totally unaware of any in built function in XL2003 that would do
this,
and there is no such function in XL2007.
However, the following code will achieve what you want.

Sub ChangePTName()
Dim pt As PivotTable, pf As PivotField, ws As Worksheet, i As Long
Application.ScreenUpdating = False
Set ws = ActiveSheet
For i = 1 To ws.PivotTables.Count
Set pt = ws.PivotTables(i)
pt.ManualUpdate = True
For Each pf In pt.DataFields
If pf.Function = xlSum Then
If Left(pf.Caption, 6) = "Sum of" Then
pf.Caption = Right(pf.Caption, Len(pf.Caption) - 6)
End If
End If
Next
pt.ManualUpdate = False
Next i
Application.ScreenUpdating = True
End Sub

Copy the Code above
Alt+F11 to invoke the VB Editor
InsertModule
Paste code into white pane that appears
Alt+F11 to return to Excel

To use
Select sheet containing the PT's
Alt+F8 to bring up Macros
Highlight ChangePTName
Run

--
Regards
Roger Govier

"Russ" wrote in message
...
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?

Thanks

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:35 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright 2004-2024 OfficeFrustration.
The comments are property of their posters.