Excel 1733854663
Excel 1733854663
VLOOKUP: Searches for a value in the first column of a table and returns a value in the same row
from another column.
Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
HLOOKUP: Searches for a value in the first row of a table and returns a value in the same column
from another row.
Syntax: =HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
XLOOKUP: Looks up a value in a range or array and returns a corresponding value from another
range. Supports exact match by default.
Syntax: =XLOOKUP(lookup_value, lookup_array, return_array, [if_not_found],
[match_mode], [search_mode])
INDEX: Returns the value of a cell within a specified range based on row and column numbers.
Syntax: =INDEX(array, row_num, [column_num])
MATCH: Searches for a specified item in a range and returns its relative position.
Syntax: =MATCH(lookup_value, lookup_array, [match_type])
OFFSET: Returns a reference to a cell or range that is a specified number of rows and columns
from a cell or range.
Syntax: =OFFSET(reference, rows, cols, [height], [width])
Mathematical Functions
LEFT: Extracts a specified number of characters from the beginning of a text string.
Syntax: =LEFT(text, [num_chars])
RIGHT: Extracts a specified number of characters from the end of a text string.
Syntax: =RIGHT(text, [num_chars])
MID: Extracts a specific number of characters from a text string, starting at a given position.
Syntax: =MID(text, start_num, num_chars)
FIND: Returns the starting position of a text string within another text string (case-sensitive).
Syntax: =FIND(find_text, within_text, [start_num])
Logical Functions
IF: Tests a condition and returns one value if TRUE and another if FALSE.
Syntax: =IF(logical_test, value_if_true, value_if_false)
IFERROR: Returns a specified value if a formula returns an error, otherwise returns the result of the
formula.
Syntax: =IFERROR(value, value_if_error)
FORECAST: Predicts a future value along a linear trend based on known values.
Syntax: =FORECAST(x, known_y's, known_x's)
LINEST: Returns statistics that describe a linear trend (used for regression analysis).
Syntax: =LINEST(known_y's, [known_x's], [const], [stats])