0% found this document useful (0 votes)
29 views5 pages

Định Nghĩa Và VÍ Dụ Về Cách Dùng Các Hàm Trong Bài

The document describes 18 Excel functions for performing calculations and data analysis: VLOOKUP searches for a value and returns a related value from another column. AVERAGE calculates the average of numbers. INDEX, MATCH, and MAX return the maximum value and corresponding entry from another range. IF and MAX return the maximum of two values based on a comparison. SUM adds numbers. SUMIF sums numbers meeting a condition. MODE returns the most frequent value. MEDIAN returns the middle value. MEAN is equivalent to AVERAGE. MIN and MAX return minimum and maximum values. MINIF and MAXIF return conditional minimum and maximum values. COUNT counts non-blank entries. COUNTIF counts entries meeting a condition. MATCH returns a

Uploaded by

Y Dao Nhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views5 pages

Định Nghĩa Và VÍ Dụ Về Cách Dùng Các Hàm Trong Bài

The document describes 18 Excel functions for performing calculations and data analysis: VLOOKUP searches for a value and returns a related value from another column. AVERAGE calculates the average of numbers. INDEX, MATCH, and MAX return the maximum value and corresponding entry from another range. IF and MAX return the maximum of two values based on a comparison. SUM adds numbers. SUMIF sums numbers meeting a condition. MODE returns the most frequent value. MEDIAN returns the middle value. MEAN is equivalent to AVERAGE. MIN and MAX return minimum and maximum values. MINIF and MAXIF return conditional minimum and maximum values. COUNT counts non-blank entries. COUNTIF counts entries meeting a condition. MATCH returns a

Uploaded by

Y Dao Nhu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

VLOOKUP: The VLOOKUP function is used to search for a

value in one column and return a related value from


another column. Syntax: VLOOKUP(lookup_value,
table_array, col_index_num, [range_lookup]) Example:
=VLOOKUP(A2, B2:C10, 2, FALSE) will search for the value
in cell A2 within the range B2:C10 and return the value
from the second column in the range.
AVERAGE: The AVERAGE function is used to calculate the
average value of numbers within a range. Syntax:
AVERAGE(number1, [number2], ...) Example:
=AVERAGE(A1:A10) will calculate the average value of
numbers within the range A1:A10.
INDEX, MATCH, MAX: Combine the INDEX, MATCH, and
MAX functions to find the maximum value within a range
and return a value from another range. Syntax:
=INDEX(range, MATCH(MAX(range), range, 0)) Example:
=INDEX(A1:A10, MATCH(MAX(A1:A10), A1:A10, 0)) will
find the maximum value within the range A1:A10 and
return the corresponding value from the range.
IF, MAX: The IF function is combined with the MAX
function to perform a comparison and return the
maximum value if the condition is true. Syntax:
IF(logical_test, value_if_true, value_if_false) Example:
=IF(A1>B1, A1, B1) will compare the values in cell A1 and
B1, and if A1 is greater than B1, it will return A1;
otherwise, it will return B1.
SUM: The SUM function is used to calculate the sum of
values within a range. Syntax: SUM(number1, [number2],
...) Example: =SUM(A1:A10) will calculate the sum of
numbers within the range A1:A10.
SUMIF: The SUMIF function is used to calculate the sum
of values within a range based on a specific condition.
Syntax: SUMIF(range, criteria, [sum_range]) Example:
=SUMIF(A1:A10, ">50") will calculate the sum of numbers
within the range A1:A10 that are greater than 50.
MODE: The MODE function is used to find the most
frequently occurring value within a range. Syntax:
MODE(number1, [number2], ...) Example:
=MODE(A1:A10) will return the most frequently
occurring value within the range A1:A10.
MEDIAN: The MEDIAN function is used to calculate the
median (middle) value within a range. Syntax:
MEDIAN(number1, [number2], ...) Example:
=MEDIAN(A1:A10) will calculate the median value of
numbers within the range A1:A10.
MEAN: The MEAN function is equivalent to the AVERAGE
function and is used to calculate the mean (average)
value of numbers within a range. Syntax:
MEAN(number1, [number2], ...) Example:
=MEAN(A1:A10) will calculate the mean value of
numbers within the range A1:A10.
MIN: The MIN function is used to find the minimum value
within a range. Syntax: MIN(number1, [number2], ...)
Example: =MIN(A1:A10) will return the minimum value
within the range A1:A10.
MAX: The MAX function is used to find the maximum
value within a range. Syntax: MAX(number1,
[number2], ...) Example: =MAX(A1:A10) will return the
maximum value within the range A1:A10.
MINIF: The MINIF function is used to find the minimum
value within a range based on a specific condition.
MINIF: The MINIF function is used to find the minimum
value within a range based on a specific condition.
Syntax: MINIF(range, criteria, [min_range]) Example:
=MINIF(A1:A10, ">0") will find the minimum value within
the range A1:A10 that is greater than 0.
MAXIF: The MAXIF function is used to find the maximum
value within a range based on a specific condition.
Syntax: MAXIF(range, criteria, [max_range]) Example:
=MAXIF(A1:A10, "<100") will find the maximum value
within the range A1:A10 that is less than 100.
COUNT: The COUNT function is used to count the number
of values (excluding blanks) within a range. Syntax:
COUNT(value1, [value2], ...) Example: =COUNT(A1:A10)
will count the number of values within the range A1:A10.
COUNTIF: The COUNTIF function is used to count the
number of values within a range based on a specific
condition. Syntax: COUNTIF(range, criteria) Example:
=COUNTIF(A1:A10, ">0") will count the number of values
within the range A1:A10 that are greater than 0.
MATCH: The MATCH function is used to search for a value
within a range and return its position. Syntax:
MATCH(lookup_value, lookup_array, [match_type])
Example: =MATCH(A1, B1:B10, 0) will search for the value
in cell A1 within the range B1:B10 and return its position.
INDEX: The INDEX function is used to retrieve a value
from a range based on a specified index. Syntax:
INDEX(array, row_num, [column_num]) Example:
=INDEX(A1:A10, 3) will retrieve the value from the range
A1:A10 at the third row.
ROUND: The ROUND function is used to round a number
to a specified number of digits. Syntax: ROUND(number,
num_digits) Example: =ROUND(A1, 2) will round the
value in cell A1 to 2 decimal places.
Please note that the syntax and examples provided are
just basic guidelines. You can modify the ranges and
conditions according to your specific needs when using
these functions in Excel.

You might also like