๐Ÿ”ข Using Excel Functions of All Major Categories

Microsoft Excel provides a wide range of built-in functions that can be used to perform calculations, manipulate data, and automate various tasks. Excel functions are organized into categories based on their use, making it easier to find and apply them. In this guide, we will explore the major categories of Excel functions and their practical uses.


1. ๐Ÿงฎ Mathematical and Trigonometric Functions

Mathematical and trigonometric functions in Excel are used to perform basic arithmetic, statistical operations, and trigonometric calculations.

  • SUM: Adds all the numbers in a range. 
    =SUM(A1:A10)
  • AVERAGE: Calculates the average of numbers in a range. 
    =AVERAGE(B1:B10)
  • PI: Returns the value of Pi. 
    =PI()
  • ROUND: Rounds a number to a specified number of digits. 
    =ROUND(C1, 2)
  • SIN: Returns the sine of an angle (in radians). 
    =SIN(D1)
  • COS: Returns the cosine of an angle (in radians). 
    =COS(D1)

2. ๐Ÿ”ข Statistical Functions

Statistical functions are used to analyze data and perform statistical operations such as calculating averages, standard deviations, and more.

  • COUNT: Counts the number of cells that contain numbers. 
    =COUNT(A1:A10)
  • COUNTA: Counts the number of cells that are not empty. 
    =COUNTA(A1:A10)
  • MIN: Returns the smallest number in a range. 
    =MIN(A1:A10)
  • MAX: Returns the largest number in a range. 
    =MAX(A1:A10)
  • STDEV: Calculates the standard deviation based on a sample. 
    =STDEV(A1:A10)
  • MEDIAN: Returns the median of a set of numbers. 
    =MEDIAN(A1:A10)

3. ๐Ÿ“… Date and Time Functions

Date and time functions in Excel allow you to perform operations based on dates and times, such as calculating the difference between dates or extracting specific parts of a date (like the month or year).

  • NOW: Returns the current date and time. 
    =NOW()
  • TODAY: Returns the current date. 
    =TODAY()
  • DATE: Creates a date from the year, month, and day. 
    =DATE(2023, 5, 25)
  • DAY: Returns the day of the month from a given date. 
    =DAY(A1)
  • MONTH: Returns the month of a given date. 
    =MONTH(A1)
  • YEAR: Returns the year of a given date. 
    =YEAR(A1)

4. ๐Ÿ” Lookup and Reference Functions

Lookup and reference functions help you find values in a data set and reference specific data from another location or table.

  • VLOOKUP: Searches for a value in the first column of a table and returns a value in the same row from another column. 
    =VLOOKUP(A1, B1:D10, 2, FALSE)
  • HLOOKUP: Searches for a value in the first row of a table and returns a value in the same column from another row. 
    =HLOOKUP(A1, B1:D10, 2, FALSE)
  • INDEX: Returns a value from a range based on a specified row and column number. 
    =INDEX(A1:C10, 2, 3)
  • MATCH: Searches for a value in a range and returns its position. 
    =MATCH(A1, B1:B10, 0)
  • OFFSET: Returns the value of a cell located a specified number of rows and columns from a reference cell. 
    =OFFSET(A1, 2, 3)

5. ๐Ÿ“œ Text Functions

Text functions in Excel allow you to manipulate text strings, such as combining, splitting, or converting text.

  • CONCATENATE: Joins two or more text strings into one. 
    =CONCATENATE(A1, " ", B1)
  • LEN: Returns the number of characters in a text string. 
    =LEN(A1)
  • UPPER: Converts text to uppercase. 
    =UPPER(A1)
  • LOWER: Converts text to lowercase. 
    =LOWER(A1)
  • TRIM: Removes extra spaces from a text string. 
    =TRIM(A1)
  • LEFT: Extracts a specified number of characters from the beginning of a text string. 
    =LEFT(A1, 3)

6. ๐Ÿ”ข Financial Functions

Financial functions help you perform various calculations related to finance, such as loan payments, interest rates, and more.

  • PMT: Calculates the payment for a loan based on constant payments and a constant interest rate. 
    =PMT(interest_rate, periods, loan_amount)
  • FV: Returns the future value of an investment based on periodic, constant payments and a constant interest rate. 
    =FV(interest_rate, periods, payment, present_value)
  • NPV: Calculates the net present value of an investment based on a series of periodic cash flows and a discount rate. 
    =NPV(rate, value1, value2, ...)

7. ๐Ÿง‘โ€๐Ÿ’ผ Logical Functions

Logical functions are used to perform conditional checks and return different values based on whether the condition is true or false.

  • IF: Performs a logical test and returns one value if true and another value if false. 
    =IF(A1>10, "Yes", "No")
  • AND: Returns TRUE if all the conditions are true; otherwise, it returns FALSE. 
    =AND(A1>10, B1<20)
  • OR: Returns TRUE if any of the conditions are true; otherwise, it returns FALSE. 
    =OR(A1>10, B1<20)
  • NOT: Reverses the logical value of a condition (TRUE becomes FALSE, and vice versa). 
    =NOT(A1>10)

๐Ÿ” Summary

Excel functions provide users with a powerful way to perform calculations, analyze data, and automate tasks. Mastering the major categories of functions such as Mathematical, Statistical, Date and Time, Lookup and Reference, Text, Financial, and Logical functions will greatly improve your efficiency and productivity when working with Excel spreadsheets.