You are on page 1of 6

POPULAR

FUNCTIONS IN
MS EXCEL
ROUND
• =ROUND(number, num_digits)
• number (Required) The number that you want to round.
• num_digits  (Required) The number of digits to which you want to round the
number argument.
• Example
A B = ROUND(A1,2)
1 4.3333 2.44444
result: 4.33
2 9.22222 6.1111
TRUNC
• =TRUNC(number, [num_digits])
• Number  (Required) The number you want to truncate.
• Num_digits  (Optional). A number specifying the precision of the truncation. The
default value for num_digits is 0 (zero).
• Example
A B = trunc(A1)
1 4.3333 2.44444
result: 4
2 9.22222 6.1111
MAXIMUM
• =MAX(number1, [number2], ...)
• Number1, number2, ...  Number1 is required, subsequent numbers are optional. 1
to 255 numbers for which you want to find the maximum value.

• Example
A B = MAX(A1:A2) OR =MAX(A1:A2, 150)
1 100 400
2 200 300
result: 200
MINIMUM
• =MIN(number1, [number2], ...)
• Number1, number2, ...  Number1 is required, subsequent numbers are optional. 1
to 255 numbers for which you want to find the lowest value.

• Example
A B = Min(B1:B2), or Min(B1:B2, 250)
1 100 400
2 200 300
result: 300
CONCATENATE
• EXAMPLE:
=CONCATENATE(A1,” “A2,” “,B2,” ”,B1,” “,C1,”
A B C “,C2)
OR
1 ANG TALAGA HAHA
2 GANDA KO HEHE
=(A1&A2&B2&B1&C1&C2)

RESULT: ANG GANDA KO TALAGA HAHA


HEHE

You might also like