LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 208
Default Highlight Pivot Row Totals

Hi,

I'm trying to write a macro to highlight the total rows in my pivot
tables. I have Office 03.


Does anyone know how I can determine what colums / rows the pivot
table occupies to so that I can apply the correct formatting? I have
some code that doesn't work too well (posted at the bottom)


The logic of the program I want to write is:


Get the range that the pivot table occupies (e.g. A3:F100) (referred
to below as Pivot Range)

For each cell in the Pivot Range (assuming that the loop will go
a3, b3, c3, d3....)

if the cell contains the word Total then
Format the row from the current cell to the last
column of the pivot table range a certain color
go to the next row


The only other thing worth noting is that I only want to highlight
from the column with the total to the end of the pivot, so if c3
contains a total then in the example above, c3 - f3 would be
highlighted.


My code so far:
Sub Help()
Dim pt As PivotTable

Set pt = ActiveCell.PivotTable

pt.TableRange2.Select 'this selects the range that the pivot
occupies

For Each Cell In Selection
Set x = Cell.Find("Total")

If x = "" Then
x = ""
Else
With Cell.Interior
.ColorIndex = 26
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
End With

End If
Next
Exit Sub

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot Table % of Totals Lynn Excel Discussion (Misc queries) 2 May 28th 06 05:54 PM
Pivot Table Totals ajames Excel Discussion (Misc queries) 2 February 22nd 06 08:45 AM
Pivot Table - Sub totals yazh Excel Discussion (Misc queries) 1 September 22nd 05 06:21 PM
Pivot table totals Graham Excel Discussion (Misc queries) 0 June 13th 05 01:17 PM
Pivot Table Totals Adam New Users to Excel 0 March 25th 05 04:57 PM


All times are GMT +1. The time now is 12:33 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"