Enable Command Bar

M

mathel

I am using Excel 2003 and created a Pivot report to be used by multiple
users. Periodically, the data needs to be refreshed. The 'Pivot Table'
command bar was not loading when other users opened the file, so I added the
following in the WB code:

Private Sub Workbook_Open()
Application.CommandBars("PivotTable").Visible = True
End Sub

The command bar now loads, however, is greyed out for the other users. What
can be added to this sub-routine to enable this command bar?

Any suggestions greatly appreciated.
 
A

Atishoo

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

mathel

Hi Atishoo,

I copied the line and added it to my WB code, saved the file and had another
user open it - the Command Bar remains greyed out. Any other thoughts? I
don't understand why the Pivot Command bar is OK on my document, but no one
elses!
 
A

Atishoo

try
Tools, Share Workbook..., allow multiple users. (check and de check this
option try both ways)
try turning off sheet protection.

if i get any more ideas ill let you know
 

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

Top