missing pivot toolbar

neilb

Board Regular
Joined
Apr 18, 2002
Messages
128
Hi

Please can anyone help. I have excel 2000 and have lost my pivot toolbar. If I go to view/toolbars it is ticked. I have lookedto see if it is hiding anywhere but can not find it.

Is there any where else it could be hiding or should I re install excel?

Many thanks
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
I just got an email that saays that I have had a reply. I clicked on the link and it states that the message doesn't exist???
 
Upvote 0
Try this macro (and stay calm) :) . If this doesn't help, I'm at a loss on this one.

Sub Macro2()

Application.CommandBars("PivotTable").Visible = True

End Sub
 
Upvote 0
I'll give it another shot...

Try running this...post back what happens

Sub Macro3()
Foundit = True
For i = 1 To 35
If Application.CommandBars(i).Name = "PivotTable" Then
Application.CommandBars(i).Visible = True
Application.CommandBars(i).Position = 4
Foundit = True
i = 35
End If
Next i
If Foundit = False Then
MsgBox "Did not find Pivot Table Toolbar"
End If

End Sub
 
Upvote 0
:oops: Use this instead!


Sub Macro3()
Foundit = False
For i = 1 To 35
If Application.CommandBars(i).Name = "PivotTable" Then
Application.CommandBars(i).Visible = True
Application.CommandBars(i).Position = 4
Foundit = True
i = 35
End If
Next i
If Foundit = False Then
MsgBox "Did not find Pivot Table Toolbar"
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,871
Members
449,054
Latest member
juliecooper255

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top