Click the little square icon in the left side of the status bar.
Choose View Macros Macros. Or, choose Developer Code Macros.
Display the Excel Options dialog box (Office Excel Options), click Popular, and then enable Show Developer Tab in the Ribbon.
By default, Excel proposes that you destroy your macros when you first save a new workbook. When you save the file, read Excel's warning very carefully and don't accept the default Yes button. If your workbook contains macros, you must save it as an XLSM file, not an XLSX file.
Unfortunately, that's how Excel 2007 works. If a module contains no executable procedures, it is deleted. I'd call that a dumb design decision on the part of Microsoft.
Press Ctrl+F1 to toggle the display of the Ribbon. If you'd like to toggle the Ribbon display using VBA, you must resort to using the Sendkeys method:
Sub ToggleRibbon() Application.SendKeys "^{F1}" End Sub
Click the Add-Ins tab, and you'll see them in the Custom Toolbars group .
No, you can't. The old custom toolbars are fixed in place in the Add-Ins Custom Toolbars group.
The Internet has thousands of VBA examples. A good starting point is my Web site:
http://www.j-walk.com/ss
Or, do a search at
http://www.www.google.com
You must use VBA to hide the status bar. The following statement will do the job:
Application.DisplayStatusBar = False
No.
That's probably because the cell pointer is inside a table. When the active cell is in a table, you must press Ctrl+A three times to select all worksheet cells.
That's probably because your workbook contains a table. Convert the table to a range, and then you can use Views Workbook Views Custom Views.
This technique does not require any macros. Type the list of valid entries in a single column. You can hide this column from the user if you wish. Select the cell or cells that will display the list of entries, choose Data Data Tools Data Validation, and then click the Settings tab in the Data Validation dialog box. From the Allow drop-down list, select List. In the Source box, enter a range address or a reference to the single-column list on your sheet. Make sure the In-Cell Dropdown check box is selected. If the list is short, you can simply type the items, each separated by a comma.
Yes. You need to create a name for the list (for example, ListEntries ). Then, in the Data Validation dialog box, enter =ListEntries in the Source box. Make sure that you include the initial equal sign; otherwise , it won't work.
The Calculation property is a member of the Application object. Therefore, the calculation mode affects all workbooks. You cannot set the calculation mode for only one workbook. Excel 2000 and later versions provide a new Worksheet object property: EnableCalculation . When this property is False , the worksheet will not be calculated, even if the user requests a calculation. Setting the property to True will cause the sheet to be calculated.
I don't know. Unfortunately, the very useful F4 key is much less useful in Excel 2007. For example, if you click the Insert Worksheet icon and then press F4, Excel does not repeat the Insert Worksheet command. However, if you insert the worksheet by using Shift+F11, then F4 does repeat the command.
Another example: If you apply a style to a chart (using Chart Tools Design Chart Styles), you can't use F4 to repeat that command on another chart.
Hopefully, this problem will be fixed in a subsequent update.
To use those commands, you must customize your Quick Access Toolbar (QAT). Right-click the QAT and choose Customize Quick Access Toolbar. The speech commands are listed in the Commands Not in the Ribbon category (they all begin with the word "Speak").
You can't. This number is fixed and cannot be changed. Excel 2007 worksheets contain 16,384 columns.
See the answer to the previous question. If you need more than 1,048,576 rows, Excel is probably not the solution to your problem.
When Excel opens a workbook that was saved in a previous version's file format, it does not automatically convert it to an Excel 2007 workbook. You need to do it manually: Save the workbook in an Excel 2007 file format, close it, and then re- open it. You'll then see the additional rows.
Press Ctrl+N to create a blank workbook. Activate your old workbook and choose the Home tab. Click the very bottom of the vertical scrollbar in the Styles gallery and choose Merge Styles. In the Merge Styles dialog box, double-click the new workbook you created with Ctrl+N, and the old styles will be replaced with the new styles. But this works only with cells that have not been formatted with other font attributes. For example, bold cells retain their old fonts.
Try using the Page Layout view (the icon on the right side of the status bar). Or, add the Print Preview button to your QAT. To add this button to your QAT, click the down arrow control to the right of the QAT and choose Print Preview from the list.
That's probably because the new theme uses different fonts. After applying the theme, use the Page Layout Themes Fonts control to select your original fonts to use with the new theme. Or, modify the font size for the Normal style. If page fitting is critical, you should choose the theme before you do much work on the document.
Open the Excel Options dialog box, click the Advanced tab, scroll down to the Display Options for This Worksheet section, and remove the check mark from Show Page Breaks.
No. For some reason, this very useful command isn't available as a QAT icon.
To change the cell back to normal, click the option that corresponds to the current orientation (that option is highlighted). Or, choose the Format Cell Alignment option and make the change in the Format Cells dialog box.
That's probably because the table cells were formatted manually. Removing the old cell background colors and applying a style should work.
You need to download a free add-in from Microsoft (try http://www.office.microsoft.com). After you download and install the add-in, click the Office Menu button and then choose Save As PDF or XPS. Why isn't it built into Office 2007? Blame the attorneys at Adobe Systems.
Right-click the sheet tab and select Tab Color. Versions prior to Excel 2002 do not allow you to change the tab color.
Yes, but you must go outside Excel to do so. If you use Windows XP, access the Windows Control Panel and select Display. In the Display Properties dialog box, click the Appearance tab and then click the Advanced button. In the Advanced Appearance dialog box, access the Item list and select Scrollbar. Enter a different font size or use the spinner to increase or decrease the size. This setting will affect other programs. The procedure varies slightly with other versions of Windows.
Yes. See the answer to the previous question - but select ToolTip in the Item list. Use the controls to change the settings. Changing the setting will not affect existing comments.
Yes, you can play WAV and MIDI files, but it requires Windows Application Programming Interface (API) functions (see Chapter 11). If you're using Excel 2002 or later, you can take advantage of the Speech object. The following statement, when executed, greets the user by name:
Application.Speech.Speak ("Hello" & Application.UserName)
Probably not. Try using the Office Prepare Edit Links to Files command. In the Edit Links dialog box, click Break Link. Keep in mind that links can occur in places other than formulas. If you have a chart in your workbook, click each data series in the chart and examine the SERIES formula in the formula bar. If the formula refers to another workbook, you've identified the link. To eliminate it, move the chart's data into the current workbook and re-create your chart.
If your workbook contains any Excel 5/95 dialog sheets, select each object in each dialog box and examine the formula bar. If any object contains a reference to another workbook, edit or delete that reference.
Choose Formulas Defined Name Name Manager. Scroll down the list in the Name Manager dialog box and examine the Refers To column. Delete names that refer to another workbook or that contain an erroneous reference (such as #REF!). This is the most common cause of "phantom links."
When Excel starts, it opens an *.xlb file, which contains menu and toolbar customizations. If this file is damaged, it might cause Excel to crash when it's started. Also, this file might (for some reason) be very large. In such a case, this could also cause Excel to crash. Typically, your *.xlb file should be 100K or smaller.
If Excel crashes when it is started, try deleting your *.xlb file. To do so, close Excel and search your hard drive for *.xlb . (The filename and location will vary.) Create a backup copy of this file, delete the original file, and then try restarting Excel. Hopefully, Excel will now start up normally and create a new *.xlb file.
Deleting your *.xlb file will also delete any toolbar or menu customizations that appear in the Add-Ins tab.