Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
OwenLiu
 
Posts: n/a
Default Pivot Table "Show All" Check Box missing in Excel 2000


Dear All,

I am facing the same problem and hope soneone can provide the method to
display the "Show All" checkbox.

Thanks and best regards,
Owen Liu


--
OwenLiu
------------------------------------------------------------------------
OwenLiu's Profile: http://www.excelforum.com/member.php...o&userid=16212
View this thread: http://www.excelforum.com/showthread...hreadid=216876

  #2   Report Post  
Alan Davis
 
Posts: n/a
Default

Are you using an OLAP cube as your data source? You won't have that selection
available to you if you are. Here is some code that will do it.

Public Sub showAll()
On Error GoTo err_CmdShow:


' You can set the display setting for empty columns and empty rows that
'will be displayed

Dim pvtTable As PivotTable
Set pvtTable = ActiveSheet.PivotTables(1)
' Empty rows will be displayed
pvtTable.DisplayEmptyRow = True
'Empty columns will be displayed.
pvtTable.DisplayEmptyColumn = True

err_GetOut:
Exit Sub

err_CmdShow:
MsgBox Err.Description
GoTo err_GetOut
End Sub


"OwenLiu" wrote:


Dear All,

I am facing the same problem and hope soneone can provide the method to
display the "Show All" checkbox.

Thanks and best regards,
Owen Liu


--
OwenLiu
------------------------------------------------------------------------
OwenLiu's Profile: http://www.excelforum.com/member.php...o&userid=16212
View this thread: http://www.excelforum.com/showthread...hreadid=216876


  #3   Report Post  
Debra Dalgleish
 
Posts: n/a
Default

If you're using Excel 2000, or an earlier version, the Show All checkbox
isn't available. You can use a macro to hide or show the items --
there's some sample code on my web site:

http://www.contextures.com/xlPivot03.html

OwenLiu wrote:
I am facing the same problem and hope soneone can provide the method to
display the "Show All" checkbox.


--
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

Reply
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
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
Excel XP Pivot Table in Excel 2000 bsantona Excel Discussion (Misc queries) 0 January 20th 05 06:37 PM
convert excel list to pivot table GI Excel Discussion (Misc queries) 0 December 6th 04 06:45 PM
Problem with Pivot Table Drop-Down Menus Mac Excel Worksheet Functions 4 November 7th 04 01:18 PM
Pivot table : Excel cannot complete this task with available resou Julie Excel Worksheet Functions 0 November 5th 04 04:09 AM


All times are GMT +1. The time now is 04:23 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"