Office 2007
From Richard's Wiki
- Excel C# Interop, Suppress "The number in this cell is formatted as text or preceded by an apostrophe" error:
public static void SetCellText(Range cell, string text) { cell.NumberFormat = "@"; cell.Value = text; // Suppress "The number in this cell is formatted as text or preceded by an apostrophe" for (int i = 1; i <= 7; i++) { cell.Errors.Item[i].Ignore = true; } }
- Quick Reference Card - Up to speed with the 2007 Microsoft® Office system
- If Outlook 2007 comes up with a message saying "Cannot create Outlook window", a possible fix is to run the following from the command line:
outlook.exe /resetnavpane
- To delete blank rows in Excel:
- First, before you make any drastic changes to any workbook always make sure you have a backup copy or a recently saved copy in case you need to restore the original data .
- Now, select the cells in one column from the top of your list to the bottom.
- Make sure that all the blank cells in this selected range are the rows you want to delete.
- Press the F5 key on your keyboard (or select Edit, Goto).
- Click the Special button.
- Click the Blanks option and click OK. This will select all blank cells in the range you had previously selected.
- Now choose Edit, Delete, select the Entire Row option and click OK.
Microsoft Word
Removing an Excel Workbook VBA Password
A VBA project password can be removed with a hex editor. Close the workbook and open the workbook file in the hex editor. Find the string "DPB" and change it to "DPx". Save the file. Open the workbook and click OK until the workbook is open (one or more dialogs are displayed describing various problems with the VBA project). Press ALT+F11, choose the menu command Tools->VBAProject Properties, navigate to the Protection tab, and change the password but do not remove it (note the new password). Save, close, and re-open the workbook. Press ALT+F11 and enter the new password. Choose Tools->VBAProject Properties, navigate to the Protection tab, and remove the password. Save the workbook.