If you want to copy data from Excel to Microsoft word then follow these steps:
In Excel
- Select the worksheet data (range) that you want to copy to a Word document.
- On the Home tab, Clipboard group, click
Excel help for the rest of us
If you want to copy data from Excel to Microsoft word then follow these steps:
In Excel
One of the newly introduced functions in Excel 2007 is the IFERROR Function. If you are using a formula in a cell, this function allows you to trap formula errors and specify a value to be substituted in the cell in case of an error.
Syntax
IFERROR(value,value_if_error)
Value is the argument (formula) that is checked for an error.
Value_if_error is the value to return if the formula evaluates to an error. The following error types are evaluated: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!.
Example:
I have:
=B2/A2*$A$1
If cell A2 has a value of 0 (zero) the formula will return #DIV/0. To trap this error in Excel 2003 you will use a formula like this:
=IF(ISNUMBER(B2/A2*$A$1);B2/A2*$A$1;0)
The ISNUMBER function, part of the first argument to the IF function; will decide if the value returned from our formula is a number. In this case it will accept the result; otherwise it will substitute a 0. Notice that our formula is supplied twice: as part of the first argument to the IF function, and as a second argument.
The IFERROR function is much simpler.
=IFERROR(B2/A2*$A$1;0)
In this example if there is no error the result of the formula: B2/A2*$A$1 will be returned and accepted, otherwise a 0 will be substituted.
To copy data and then paste it as a picture (image) follow these steps:

I find it annoying sometimes when I enter a correct formula in a cell and Excel gives me an error like “Inconsistent Formula” or “Formula Omits Adjacent Cells”.

Fortunately you can hide these error indicators through Excel Options.
To change Excel 2007 default file location, follow these steps:
1. Click the Microsoft Office Button.
2. Click Excel Options.
3. In Excel Options window (left side) click Save.
4. In the text box labeled Default File Location , specify the path for the required location.

To save an Excel 2007 workbook to Excel 97-2003 format follow these simple steps:
1. In Excel 2007, open the workbook that you want to save in Excel 97-2003 format.
2. Click the Microsoft Office Button
and point to the arrow next to Save As.
3. Under Save a copy of the document, click Excel 97-2003 Workbook.
The file will be saved in the Excel 97 – Excel 2003 file format. This will make it possible to open the file in versions of Excel 97 through Excel 2003.

If you want to validate a cell to restrict data entry to a date range then follow these steps:


Notes:
More Validation options:
Tip
If you change the validation settings for a cell, you can automatically apply your changes to all other cells that have the same settings. To do so
To find cells that meet a specific criteria, for example cells with conditional formatting or cells which have data validation, proceed as follows:

Note:
You can search the entire sheet for the specified criteria or you can limit your search by selecting a range of cells.
In an earlier post I demonstrated How to sum cells with multiple criteria in Excel 2003. I used an Array Formula consisting of the SUM function and the IF function.
In Excel 2007 however a new function is introduced that facilitates sum with multiple criteria: the SUMIFS function.
Syntax
SUMIFS (sum_range, criteria_range1, criteria1, criteria range2, criteria2…) … up to 127 range/criteria can be specified.
sum_range : Required. One or more cells to sum.
criteria_range1: Required. The first range in which to evaluate the associated criteria.
criteria1: Required. The criteria in the form of a number, expression, cell reference, or text that define which cells in the criteria_range1 argument will be added.
criteria_range2, criteria2, … : Optional. Additional ranges and their associated criteria. Up to 127 range/criteria pairs are allowed.
In the example below we want to sum the sales for “John” in quarter 2 (Q2). I.e. we have two criteria:
1. “John” in column B.
2. “Q2″ in column C.
We will use the following formula for this purpose:
=SUMIFS(D2:D17;B2:B17;”John”;C2:C17;”Q2″)
Only rows 3, 10 and 14 will qualify for this formula (yellow color) and it will give us a result of 9547 as you can see.

If you want to validate a cell to restrict data entry to values in a drop-down list follow these steps:


Notes:
More Validation options:
Tip
If you change the validation settings for a cell, you can automatically apply your changes to all other cells that have the same settings. To do so
Copyright © 2010 · Excel Digest · WordPress