0% found this document useful (0 votes)
22 views

Basic Excel Formulas

The document outlines basic Excel formulas including SUM, AVERAGE, COUNT, IF, CONCATENATE, NOW, MAX, and MIN. Each formula is accompanied by a brief description and an example of its usage. These formulas are essential for performing various calculations and data manipulations in Excel.

Uploaded by

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

Basic Excel Formulas

The document outlines basic Excel formulas including SUM, AVERAGE, COUNT, IF, CONCATENATE, NOW, MAX, and MIN. Each formula is accompanied by a brief description and an example of its usage. These formulas are essential for performing various calculations and data manipulations in Excel.

Uploaded by

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

Basic Excel Formulas

1. SUM

Adds a range of numbers.

=SUM(A1:A5) - Adds values from cells A1 to A5.

2. AVERAGE

Calculates the average of a range of numbers.

=AVERAGE(B1:B5) - Averages values from B1 to B5.

3. COUNT

Counts the number of numeric entries in a range.

=COUNT(C1:C10) - Counts numbers in C1 to C10.

4. IF

Performs a logical test and returns different values based on TRUE or FALSE.

=IF(D1>10, "Yes", "No") - If D1 is greater than 10, returns "Yes", otherwise "No".

5. CONCATENATE (or CONCAT)

Joins text from multiple cells.

=CONCATENATE(A1, " ", B1) - Joins A1 and B1 with a space in between.

6. NOW

Returns the current date and time.

=NOW()
7. MAX

Returns the largest number in a range.

=MAX(A1:A10)

8. MIN

Returns the smallest number in a range.

=MIN(A1:A10)

You might also like