Presentation is loading. Please wait.

Presentation is loading. Please wait.

Cell Referencing Absolute Reference: A reference that does not change when copied. It is specified with a dollar sign in front of both the row and column.

Similar presentations


Presentation on theme: "Cell Referencing Absolute Reference: A reference that does not change when copied. It is specified with a dollar sign in front of both the row and column."— Presentation transcript:

1 Cell Referencing Absolute Reference: A reference that does not change when copied. It is specified with a dollar sign in front of both the row and column. ($G$3) Relative Reference: A reference that adjusts during a copy operation and is specified without dollar signs. (G3) Mixed Reference: a reference that adjusts either the row or column reference but not both. It is specified with a single dollar sign. ($G3 or G$3)

2 Cell referencing is important during a move or copy operation. Copy: Duplicate the contents of a cell or range. Move: Transfer the contents of a cell or range. Range: Rectangular group of cells, which are specified by indicating the diagonally opposite corners

3 Sample Cell Reference in a Formula A1 Relative address of the cell in row A and column 1; both the row header and column header may change when the formula is copied. $A$1 Absolute address of the cell in row A and column 1; both the row header and column header remain constant when the formula is copied. A$1 Absolute row, relative column addressing; only the column header may change if copied to horizontally. $A1 Relative row, absolute column addressing; only the row header may change if copied vertically. R1C1Relative addressing; refers to one column down and one column right when the formula is copied.

4 IF FUNCTION =IF (condition, value_if_true, value_if_false) condition is either true or false value returned for a true condition value returned for a false condition

5 Relational Operators = Equal to <>Not equal to < Less than >Greater than <=Less than or equal to >= Greater than or equal to

6 =IF (A1=A2, 1000, 2000) =IF (A1<>A2, 1000, 2000) =IF (A1=A2, B1, B2) =IF (A1 20, “Go”, “Hold”) ABC 11015April 21030May

7 VLOOKUP FUNCTION Searches for a value in the leftmost column of a table, and then returns a value in the same row from a column you specify in the table.

8 VLOOKUP (lookup_value, table_array, col_index_num, range_lookup) Lookup_value: value to be found in the first column of the array. Table_array: the table of information in which data is looked up. If range_lookup is TRUE, the values in the first column of table_array must be placed in ascending order:..., -2, -1, 0, 1, 2,..., A-Z, FALSE, TRUE; otherwise VLOOKUP may not give the correct value. If range_lookup is FALSE, table_array does not need to be sorted. *** Uppercase and lowercase texts are equivalent. Col_index_num: the column number in table_array from which the matching value must be returned. Range_lookup: a logical value that specifies whether you want VLOOKUP to find an exact match or an approximate match. If TRUE or omitted, an approximate match is returned. In other words, if an exact match is not found, the next largest value that is less than lookup_value is returned. If FALSE, VLOOKUP will find an exact match. If one is not found, the error value #N/A is returned.


Download ppt "Cell Referencing Absolute Reference: A reference that does not change when copied. It is specified with a dollar sign in front of both the row and column."

Similar presentations


Ads by Google