Showing posts with label Excel. Show all posts
Showing posts with label Excel. Show all posts

Tuesday, November 22, 2011

Save Excel 2010 file in Excel 2003 format

When the default preference is to save all Excel 2010 workbook in file format of Excel 2003, change the ‘Save files in this format:’ on the Save sheet options, to Excel 97-2003.
File extension of Excel 2003 is *.xls
File extension of Excel 2010 is *.xslx

Click File TAB, Options, Save, Select the preferred format in the ‘Save files in this format:’ field.







Sunday, November 20, 2011

How to hide #N/A result, in Excel 2010

In Power Point presentations where there is a need to hide #N/A results for aesthetics purposes in Excel tables that were inserted in the presentation. There are two options to hide #N/A results. (A) By using IFERROR function, (B) By using the enhanced Conditional Formatting of Excel 2010.
Read section (C) below on how to hide #N/A result in Excel's print out by using Page Setup.


A) Using IFERROR function
Let’s say that sometimes one of the cells in column E can display #N/A.
In the above example cell E6 contains the function VLOOKUP(F6,$G$6:$H$10,2,FALSE) and displays the #N/A error.

The following IFERROR function, will replace #N/A with blanks:
=IFERROR(VLOOKUP(F6,$G$6:$H$10,2,FALSE),"")

B) Using the Conditional Formatting
Let’s say that sometimes cells in column C, in the above table, can display #N/A.
We will format all cells in column C in such a way that each time when the cell value is #N/A, Excel will hide the text.


  1. Click the Conditional Formatting in the ribbon of the Home TAB.
  2. Pull down menu will open.

  1. Click Manage Rules...
  2. This window will open

  1. In the above window, click the New Rule… button
  2. This window will open
     

  1. Click the second line
    Format only cells that contain
  2. This window will open

  1. Click the down arrow at 'Cell Value' and select the line 'Errors'
  2.   
The window will look like this:
 

  1. Click the Format… button
    The next window will open


  1. Click the down arrow of the 'Automatic' field

Colors pallet will open.
Select No-Color (or white color) for text and click the OK button.
The next window will show up.


  1. Click the cursor in the beginning of the field Applies to

Press the keyboard Del key to delete all the text in the Applies to field.
With the mouse, mark the area in which the #N/A error will be hidden, let's say cells C3 through C10 in the above example and press the keyboard's Enter key.


If this step was done correctly the text in the Applies to field will show
=$C$3:$C$10


Click the OK button to complete the process.
Now cells with #N/A, like C4 and C8, will look empty.



C) Hide #N/A result in Excel's print out

1. Open the Page Setup, in the Page Layout TAB

2. Click the Sheet TAB, click the pulldown arrow, select <blank>, OK


 * * *