Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Doesn't Display Tools/Options

Status
Not open for further replies.

emptyi

MIS
Joined
Nov 21, 2002
Messages
2
Location
US
I can't get the Options to display from Tools/Options. Any ideas?

Thanks,
Emptyi
 
Do you have a workbook open ?? Rgds
Geoff
"Some cause happiness wherever they go; others whenever they go."
-Oscar Wilde
 
xlbo: I have a spreadsheet open and I've opened a blank. Still no tools/options display.
 
Any of the following VBA commands should bring up an options dialog. the one at the end should bring the overall options dialog box you would expect to see.

Application.Dialogs(xlDialogOptionsCalculation).Show
Application.Dialogs(xlDialogOptionsGeneral).Show
Application.Dialogs(xlDialogOptionsChart).Show
Application.Dialogs(xlDialogOptionsEdit).Show
Application.Dialogs(xlDialogOptionsListsAdd).Show
Application.Dialogs(xlDialogOptionsME).Show
Application.Dialogs(xlDialogOptionsTransition).Show
Application.Dialogs(xlDialogOptionsView).Show
Application.Dialogs(xlDialogConditionalFormatting).Show

Overall command to bring up entire box
Application.CommandBars.FindControl(, 522).Execute


You don't say which version of Excel you are using but if it is any of the following:-

Microsoft Excel for Windows 5.0
Microsoft Excel for Windows 5.0c
Microsoft Excel for the Macintosh 5.0
Microsoft Excel for Windows 95 7.0

then the following link may help:-

XL: Error or Options Dialog Box Does Not Appear

Regards
Ken............
 
Have you tried right clicking on the menu bar, choose customize then Reset?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top