Excel Commands, Functions & Shortcuts Reference Guide

A comprehensive, categorized reference of Excel functions, formulas, and keyboard shortcuts for efficient data analysis and automation

Basic Functions

Function Description Example Usage
IFPerforms a logical test and returns one value if TRUE, another if FALSE.=IF(E1>10,"Yes","No")
ANDReturns TRUE if all supplied conditions are TRUE.=AND(A1>0, B1<10)
ORReturns TRUE if any condition is TRUE.=OR(A1>10, B1>10)
NOTReverses the logical value of its argument.=NOT(A1>5)
IFERRORReturns a custom result when a formula generates an error.=IFERROR(A1/B1, "Error")

Text Functions

Function Description Example Usage
CONCATJoins multiple text strings into one.=CONCAT(A1,B1)
TEXTJOINCombines text from multiple ranges with a delimiter.=TEXTJOIN(", ",TRUE,A1:A5)
LEFTReturns the first N characters of a text string.=LEFT(A1,5)
RIGHTReturns the last N characters of a text string.=RIGHT(A1,3)
MIDExtracts a substring from a text string.=MID(A1,2,4)
LENCounts characters in a text string.=LEN(A1)
TRIMRemoves extra spaces from text.=TRIM(A1)
UPPERConverts text to uppercase.=UPPER(A1)
LOWERConverts text to lowercase.=LOWER(A1)
PROPERCapitalizes the first letter of each word.=PROPER(A1)

Lookup & Reference Functions

Function Description Example Usage
VLOOKUPSearches for a value in the first column and returns a corresponding value from another column.=VLOOKUP(101,A1:C10,2,FALSE)
HLOOKUPLooks for a value in the first row and returns data from a specified row.=HLOOKUP("Name",A1:F3,2,FALSE)
XLOOKUPReplaces VLOOKUP with more flexibility and direction options.=XLOOKUP("Apple",A2:A10,B2:B10,"Not Found")
INDEXReturns a value based on row and column position in a range.=INDEX(B2:D10,3,2)
MATCHReturns the relative position of an item in a range.=MATCH("Item",A1:A10,0)
OFFSETReturns a reference offset from a starting cell or range.=OFFSET(A1,2,3)

Date & Time Functions

Function Description Example Usage
TODAYReturns the current date.=TODAY()
NOWReturns the current date and time.=NOW()
DATECreates a date from year, month, and day values.=DATE(2025,8,31)
DAYReturns the day from a date value.=DAY(A1)
MONTHReturns the month from a date value.=MONTH(A1)
YEARReturns the year from a date value.=YEAR(A1)
NETWORKDAYSReturns the number of working days between two dates.=NETWORKDAYS(A1,B1)

Math & Statistical Functions

Function Description Example Usage
SUMAdds all numbers in a range of cells.=SUM(A1:A5)
AVERAGECalculates the arithmetic mean of a set of numbers.=AVERAGE(B1:B10)
COUNTCounts numeric values in a range.=COUNT(C1:C10)
COUNTACounts all non-empty cells in a range.=COUNTA(D1:D10)
ROUNDRounds a number to a specified number of digits.=ROUND(A1,2)
ROUNDUPRounds a number up, away from zero.=ROUNDUP(A1,0)
ROUNDDOWNRounds a number down, toward zero.=ROUNDDOWN(A1,0)
INTRounds a number down to the nearest integer.=INT(A1)
MODReturns the remainder after division.=MOD(A1,3)
POWERRaises a number to a power.=POWER(A1,3)
SQRTReturns the square root of a number.=SQRT(A1)
SUMIFAdds cells that meet specific criteria.=SUMIF(A1:A10,">100")
AVERAGEIFReturns the average of cells that meet criteria.=AVERAGEIF(B1:B10,">50")
PRODUCTMultiplies all numbers in a range.=PRODUCT(A1:A3)
ABSReturns the absolute value of a number.=ABS(A1)

Common Excel Keyboard Shortcuts

Shortcut Action
Ctrl + CCopy selected cells.
Ctrl + VPaste copied content.
Ctrl + ZUndo last action.
Ctrl + YRedo last undone action.
Ctrl + Shift + LToggle filters on or off.
Ctrl + Arrow KeysNavigate to edge of data region.
Ctrl + ;Insert current date.
Ctrl + Shift + :Insert current time.
Alt + =Automatically insert SUM formula.
F4Repeat last action or toggle absolute references.

About Excel Functions and Formulas

This Excel functions reference provides a complete, categorized list of formulas used for calculations, data analysis, and automation in Microsoft Excel. It’s designed for engineers, analysts, students, and professionals who want to work faster and more efficiently with spreadsheets.


Applications


By mastering these Excel functions, you can:


Microsoft Excel remains one of the most powerful tools for data analysis, engineering, and business applications. This reference serves as a quick guide for understanding and applying essential Excel functions in real-world scenarios.