Pivot tabels - auto foramtting when doubleclicking

  • Thread starter Thread starter H. Rye
  • Start date Start date
H

H. Rye

When I doubleclik in my pivot table, a new sheet is created, showing the
details behind the cell content in the pivot table.

When this new sheet is created, a kind of auto formatting is applied to the
new sheet. My question is: How can I control this formating? Where does
Excel get theese formats from? Some times I get quite weird results...

I´m using Excel 2000.

Hope anybody out there can help me.

Håvard
 
I don't think you can control them (or at least I can't!).

But maybe you can go back to the raw data worksheet and select your range and
use the Format|painter icon to use the same format again.
 
Or select one of the formats from Format>AutoFormat (when you extract
data from the pivot table, it seems to apply List3 format)
 
Oh no! Too colourful for you? Maybe 'Simple' is more your style.

Sub FormatPivotDetail()
Selection.ShowDetail = True
Selection.AutoFormat _
Format:=xlRangeAutoFormatSimple
End Sub


Dave said:
It does look like it's list3 (but I don't like list3!). <vbg>
 
I it to use the same formatting as the original data--I want the same wraptext
options, colors, bolding, everything.

But that sounds pretty difficult. Maybe I shouldn't ask. (hehehe).

Debra said:
Oh no! Too colourful for you? Maybe 'Simple' is more your style.

Sub FormatPivotDetail()
Selection.ShowDetail = True
Selection.AutoFormat _
Format:=xlRangeAutoFormatSimple
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top