Complete Excel Formulas Guide - 50+ Essential Formulas for Office Work

 

๐Ÿ“Š BASIC FORMULAS

  1. SUM Formula

    excel
    =SUM(A1:A10)

    Use: Adds numbers in range
    Example: Total sales, salary calculation

  2. AVERAGE Formula

    excel
    =AVERAGE(B2:B20)

    Use: Calculates average
    Example: Average performance, monthly expenses

  3. COUNT Formula

    excel
    =COUNT(A1:A10)

    Use: Counts numeric cells
    Example: Employee count, project count

  4. COUNTA Formula

    excel
    =COUNTA(A1:A10)

    Use: Counts non-empty cells
    Example: Attendance tracking, data entries

  5. MAX Formula

    excel
    =MAX(C2:C100)

    Use: Finds highest value
    Example: Highest sales, maximum salary

  6. MIN Formula

    excel
    =MIN(C2:C100)

    Use: Finds lowest value
    Example: Lowest performance, minimum score

๐Ÿ” LOOKUP FORMULAS

  1. VLOOKUP Formula

    excel
    =VLOOKUP(A2,DataRange,2,FALSE)

    Use: Vertical data search
    Example: Employee records, price lists

  2. HLOOKUP Formula

    excel
    =HLOOKUP("Salary",A1:Z2,2,FALSE)

    Use: Horizontal data search
    Example: Comparison tables, header-based search

  3. XLOOKUP Formula

    excel
    =XLOOKUP(A2,SearchRange,ReturnRange)

    Use: Modern lookup (Excel 365)
    Example: Flexible data searching

❓ CONDITIONAL FORMULAS

  1. IF Formula

    excel
    =IF(A2>1000,"Bonus","No Bonus")

    Use: Conditional logic
    Example: Performance bonus, eligibility check

  2. SUMIF Formula

    excel
    =SUMIF(DepartmentRange,"Sales",SalaryRange)

    Use: Conditional sum
    Example: Department-wise totals

  3. SUMIFS Formula

    excel
    =SUMIFS(SalaryRange,DeptRange,"IT",ExpRange,">5")

    Use: Multiple condition sum
    Example: Filtered salary calculations

  4. COUNTIF Formula

    excel
    =COUNTIF(StatusRange,"Completed")

    Use: Conditional count
    Example: Completed projects count

  5. COUNTIFS Formula

    excel
    =COUNTIFS(DeptRange,"HR",ExpRange,">=3")

    Use: Multiple condition count
    Example: Employee categorization

  6. IFS Formula

    excel
    =IFS(A1>90,"A",A1>80,"B",A1>70,"C")

    Use: Multiple conditions
    Example: Grade calculation, rating system

๐Ÿ“… DATE & TIME FORMULAS

  1. TODAY Formula

    excel
    =TODAY()

    Use: Current date
    Example: Reports, deadlines

  2. NOW Formula

    excel
    =NOW()

    Use: Current date and time
    Example: Timestamp, tracking

  3. DATEDIF Formula

    excel
    =DATEDIF(StartDate,EndDate,"D")

    Use: Date difference
    Example: Employee tenure, project duration

  4. EDATE Formula

    excel
    =EDATE(StartDate,3)

    Use: Add months to date
    Example: Project deadlines, contract dates

  5. WORKDAY Formula

    excel
    =WORKDAY(StartDate,10)

    Use: Business days calculation
    Example: Project timelines, excluding weekends

๐Ÿ“ TEXT FORMULAS

  1. CONCATENATE Formula

    excel
    =CONCATENATE(A2," ",B2)

    Use: Combine text
    Example: Full names, addresses

  2. LEFT Formula

    excel
    =LEFT(A2,3)

    Use: Extract left characters
    Example: Short codes, prefixes

  3. RIGHT Formula

    excel
    =RIGHT(A2,4)

    Use: Extract right characters
    Example: File extensions, suffixes

  4. MID Formula

    excel
    =MID(A2,3,5)

    Use: Extract middle text
    Example: Product codes, substrings

  5. LEN Formula

    excel
    =LEN(A2)

    Use: Text length
    Example: Data validation, character count

  6. TRIM Formula

    excel
    =TRIM(A2)

    Use: Remove extra spaces
    Example: Data cleaning, formatting

  7. UPPER Formula

    excel
    =UPPER(A2)

    Use: Convert to uppercase
    Example: Standardizing text

  8. LOWER Formula

    excel
    =LOWER(A2)

    Use: Convert to lowercase
    Example: Data normalization

  9. PROPER Formula

    excel
    =PROPER(A2)

    Use: Capitalize first letters
    Example: Names, titles formatting

๐Ÿ“Š STATISTICAL FORMULAS

  1. MEDIAN Formula

    excel
    =MEDIAN(A2:A20)

    Use: Find median value
    Example: Salary distribution, performance analysis

  2. MODE Formula

    excel
    =MODE(A2:A20)

    Use: Find most frequent value
    Example: Common issues, frequent values

  3. STDEV Formula

    excel
    =STDEV(A2:A20)

    Use: Standard deviation
    Example: Data variability, quality control

  4. RANK Formula

    excel
    =RANK(A2,A$2:A$20)

    Use: Rank numbers
    Example: Performance ranking, sales ranking

๐Ÿ”ข MATH FORMULAS

  1. ROUND Formula

    excel
    =ROUND(A2,2)

    Use: Round to decimals
    Example: Currency, percentages

  2. ROUNDUP Formula

    excel
    =ROUNDUP(A2,0)

    Use: Always round up
    Example: Packaging, resource allocation

  3. ROUNDDOWN Formula

    excel
    =ROUNDDOWN(A2,0)

    Use: Always round down
    Example: Cost calculations, estimates

  4. MOD Formula

    excel
    =MOD(A2,3)

    Use: Remainder after division
    Example: Even/odd check, cycling patterns

  5. POWER Formula

    excel
    =POWER(A2,2)

    Use: Exponentiation
    Example: Area calculations, growth rates

  6. SQRT Formula

    excel
    =SQRT(A2)

    Use: Square root
    Example: Statistical calculations, engineering

๐Ÿ’ฐ FINANCIAL FORMULAS

  1. PMT Formula

    excel
    =PMT(Rate/12,Term*12,-LoanAmount)

    Use: Loan payment calculation
    Example: EMI calculation, loan planning

  2. FV Formula

    excel
    =FV(Rate/12,Term*12,-MonthlyPayment)

    Use: Future value of investment
    Example: Retirement planning, savings

  3. PV Formula

    excel
    =PV(Rate/12,Term*12,-MonthlyPayment)

    Use: Present value calculation
    Example: Investment analysis

  4. NPV Formula

    excel
    =NPV(Rate,CashflowRange)

    Use: Net present value
    Example: Project valuation, investment decisions

๐Ÿ”„ REFERENCE FORMULAS

  1. INDEX Formula

    excel
    =INDEX(DataRange,3,2)

    Use: Get value from position
    Example: Data extraction, dynamic ranges

  2. MATCH Formula

    excel
    =MATCH("SearchValue",SearchRange,0)

    Use: Find position of value
    Example: Combined with INDEX for powerful lookups

  3. INDEX-MATCH Combination

    excel
    =INDEX(ReturnRange,MATCH(SearchValue,SearchRange,0))

    Use: Flexible lookup alternative to VLOOKUP
    Example: Left lookups, dynamic data retrieval

  4. CHOOSE Formula

    excel
    =CHOOSE(3,"Low","Medium","High")

    Use: Select from list based on index
    Example: Categorization, scenario selection

✅ LOGICAL FORMULAS

  1. AND Formula

    excel
    =AND(A2>50,B2<100)

    Use: Multiple conditions (ALL must be TRUE)
    Example: Eligibility checks, validation

  2. OR Formula

    excel
    =OR(A2>90,B2>90)

    Use: Multiple conditions (ANY can be TRUE)
    Example: Qualification checks, options

  3. NOT Formula

    excel
    =NOT(A2=B2)

    Use: Reverse logical value
    Example: Exclusion criteria, inverse conditions

  4. IFERROR Formula

    excel
    =IFERROR(A2/B2,"Error")

    Use: Handle formula errors
    Example: Clean data presentation, error handling

๐Ÿ” INFORMATION FORMULAS

  1. ISNUMBER Formula

    excel
    =ISNUMBER(A2)

    Use: Check if value is number
    Example: Data validation, type checking

  2. ISTEXT Formula

    excel
    =ISTEXT(A2)

    Use: Check if value is text
    Example: Data type verification

  3. ISBLANK Formula

    excel
    =ISBLANK(A2)

    Use: Check if cell is empty
    Example: Mandatory field checks, completeness

  4. CELL Formula

    excel
    =CELL("filename",A1)

    Use: Get cell information
    Example: File path, formatting info









#ExcelFormulas #ExcelInHindi #OfficeTips #MSExcel #ExcelGuide 
#DataAnalysis #ExcelTips #ComputerKnowledge #OfficeWork #ExcelTutorial
#ExcelFormulas #ExcelInHindi #OfficeTips #MSExcel #ExcelGuide 
#DataAnal#ExcelFormul#ExcelFormulas #ExcelInHindi #OfficeTips #MSExcel #ExcelGuide 
#DataAnalysis #ExcelTips #ComputerKnowledge #OfficeWork #ExcelTutorialas #ExcelInHindi #OfficeTips #MSExcel #ExcelGuide 
#DataAnalysis #ExcelTips #ComputerKnowledge #OfficeWork #ExcelTutorialExcelInHindi #OfficeTips #MSExcel #ExcelGuide 

Comments

Popular posts from this blog

Top 7 Professional Office Letters in English | Business Communication Samples for Employees & Companies

Professional CV Samples for Job Seekers | Teacher, Accountant, HR, Sales & Office Staff Resume Templates (2025 Edition)

10 Professional Bank Email Templates for Export Documents | Export LC, Payment & Shipment Correspondence Samples