102 Useful Excel Formulas Cheat Sheet PDF (Free Download Sheet)

Useful Excel Formulas Cheat Sheet PDF. Free Download Excel Sheet

In this Excel Formulas Tutorial, we’ll share 102+ Excel formulas as a cheat sheet in a free PDF. You can download the PDF and print it to revise when needed. We did not include specialized formulas for Engineering, Statistics, Web, and other uses.

Download the Excel Formulas Cheat Sheet PDF and Excel Files

Provide a Valid Email ID below to download the PDF & Excel Files with 102 Excel Functions.

102 Most Useful Excel Formulas with Examples

Section A – IS FUNCTIONS

1. ISBLANK

isblank function excel syntax and examples

=ISBLANK(value) If a cell is blank, it returns TRUE. If a cell is not blank, it returns FALSE.

2. ISERR

iserr function excel syntax and examples

=ISERR(value) Checks whether a value is an error (#VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!) excluding #N/A, and returns TRUE or FALSE.

3. ISERROR

iserror function excel syntax and examples

=ISERROR(value) Checks whether a value is an error (#N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, or #NULL!), and returns TRUE or FALSE.

4. ISEVEN

iseven function excel syntax and examples

=ISEVEN(value) Returns TRUE if the number is even.

5. ISODD

isodd function excel syntax and examples

=ISODD(value) Returns TRUE if the number is odd.

6. ISFORMULA

isformula function excel syntax and examples

=ISFORMULA(value) Checks whether a reference is to a cell containing a formula, and returns TRUE or FALSE.

7. ISLOGICAL

islogical function excel syntax and examples

=ISLOGICAL(value) Checks whether a value is a logical value (TRUE or FALSE), and returns TRUE or FALSE.

8. ISNA

isna function excel syntax and examples

=ISNA(value) Checks whether a value is #N/A and returns TRUE or FALSE.

9. ISNUMBER

isnumber function excel syntax and examples

=ISNUMBER(value) Checks whether a value is a number, and returns TRUE or FALSE.

10. ISREF

isref function excel syntax and examples

=ISREF(value) Checks whether a value is a reference, and returns TRUE or FALSE.

11. ISTEXT

istext function excel syntax and examples

=ISTEXT(value) Checks whether a value is text, and returns TRUE or FALSE.

12. ISNONTEXT

isnontext function excel syntax and examples

=ISNONTEXT(value) Checks whether a value is not text (blank cells are not text) and returns TRUE or FALSE.

Section B – CONDITIONAL FUNCTIONS

13. AVERAGEIF

averageif function excel syntax and examples

=AVERAGEIF(range, criteria, [average_range]) Finds the average (arithmetic mean) for the cells specified by a given condition or criteria.

14. SUMIF

sumif function excel syntax and examples

=SUMIF(range, criteria, [sum_range]) Adds the cells specified by a given condition or criteria.

15. COUNTIF

countif function excel syntax and examples

=COUNTIF(range, criteria) Counts the number of cells within a range that meet the given condition.

16. AVERAGEIFS

averageifs function excel syntax and examples

=AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], …) Finds the average (arithmetic mean) for the cells specified by a given set of conditions or criteria.

17. SUMIFS

sumifs function excel syntax and examples

=SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], …) Adds the cells in the sum range if all corresponding cells in the criteria ranges fulfill their conditions.

18. COUNTIFS

countifs function excel syntax and examples

=COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2], …) Counts the number of cells in multiple ranges if each corresponding cell fulfills its criteria.

19. IF

if function excel syntax and examples

=IF(logical_test, [value_if_true], [value_if_false] Checks whether a condition is met, then returns one value if TRUE another value if FALSE.

20. IFERROR

iferror function excel syntax and examples

=IFERROR(value, value_if_error) Returns the value_if_error if the expression is an error and the value of the expression itself otherwise.

21. IFNA

ifna function excel syntax and examples

=IFNA(value, value_if_na) Returns the value you specify if the expression resolves to #N/A. Otherwise, returns the result of the expression.

Section C – MATHEMATICAL FUNCTIONS

22. SUM

sum function excel syntax and examples

=SUM(number1, [number2], [number3], [number4], …) Adds all the numbers in a list or range of cells.

23. AVERAGE

average function excel syntax and examples

=AVERAGE(number1, [number2], [number3], [number4], …) Returns the average (arithmetic means) of its arguments, which can be numbers or names, arrays, or references that contain numbers.

24. AVERAGEA

averagea function excel syntax and examples

=AVERAGEA(value1, [value2], [value3], [value4], …) Returns the average (arithmetic means) of its arguments, evaluating text and FALSE in arguments as 0; TRUE evaluates as 1. Arguments can be numbers, names, arrays, or references.

25. COUNT

count function excel syntax and examples

=COUNT(value1, [value2], [value3], …) Counts the number of cells in a range that contain numbers.

26. COUNTA

counta function excel syntax and examples

=COUNTA(value1, [value2], [value3], …) Counts the number of cells in a range that are not empty.

27. MEDIAN

median function excel syntax and examples

=MEDIAN(number1, [number2], [number3], …) Returns the median, or the number in the middle of the set of given numbers.

28. SUMPRODUCT

sumproduct function excel syntax and examples

=SUMPRODUCT(array1, [array2], [array3], …) Returns the sum of the products of corresponding ranges or arrays.

29. SUMSQ

sumsq function excel syntax and examples

=SUMSQ(number1, [number2], [number3], …) Returns the sum of the squares of the arguments. The arguments can be numbers, arrays, names, or references to cells that contain numbers.

30. COUNTBLANK

countblank function excel syntax and examples

=COUNTBLANK(range) Counts the number of empty cells in a range.

31. EVEN

even function excel syntax and examples

=EVEN(number) Rounds a positive number up and negative number down to the nearest even integer.

32. ODD

odd function excel syntax and examples

=ODD(number) Rounds a positive number up and negative number down to the nearest odd integer.

33. INT

int function excel syntax and examples

=INT(number) Rounds a number down to the nearest integer.

34. LARGE

<a href=large function excel syntax and examples" width="793" height="444" />

=LARGE(array, k) Returns the k-th largest value in a data set. For example, k=5 returns the fifth-largest number.

35. SMALL

small function excel syntax and examples

=SMALL(array, k) Returns the k-th smallest value in a data set. For example, k=5 returns the fifth smallest number.

36. MAX and MAXA

max and maxa functions excel syntax and examples

=MAX(number1, [number2], [number3], [number4], …) Returns the largest value in a set of values. Ignores logical values and text. =MAXA(value1, [value2], [value3], [value4], …) Returns the largest value in a set of values. Does not ignore logical values and text. MAXA function evaluates TRUE as 1, FALSE as 0, and any Text value as 0. Empty cells are ignored.

37. MIN and MINA

min and mina functions excel syntax and examples

=MIN(number1, [number2], [number3], [number4], …) Returns the smallest number in a set of values. Ignores logical values and text. =MINA(value1, [value2], [value3], [value4], …) Returns the smallest value in a set of values. Does not ignore logical values and text. MAXA function evaluates TRUE as 1, FALSE as 0, and any Text value as 0. Empty cells are ignored.

38. MOD

mod function excel syntax and examples

=MOD(number, divisor) Returns the remainder after a number is divided by a divisor.

39. RAND

rand function excel syntax and examples

=RAND() Returns a random number greater than or equal to 0 and less than 1, using an internal pseudorandom algorithm (changes on recalculation).

40. RANDBETWEEN

randbetween function excel syntax and examples

=RANDBETWEEN(bottom, top) Returns a random number between the specified numbers.

41. SQRT

sqrt function excel syntax and examples

=SQRT(number) Returns the square root of a number.

42. SUBTOTAL

subtotal function excel syntax and examples

=SUBTOTAL(function_num, ref1, [ref2], [ref3], …) Returns a subtotal in a list or database.

Section D – FIND and SEARCH FUNCTIONS

43. FIND

find function excel syntax and examples

=FIND(find_text, within_text, [start_num]) Returns the starting position of one text string within another text string. FIND is case-sensitive.

44. SEARCH

search function excel syntax and examples

=SEARCH(find_text, within_text, [start_num]) Returns the number of the character at which a specific character or text string is first found, from left to right (not case-sensitive).

45. SUBSTITUTE

substitute function excel syntax and examples

=SUBSTITUTE(text, old_text, new_text, [instance_num]) Replaces the old text with new text in a text string, with the optional value announcing what repetition of the old text to replace.

46. REPLACE

replace function excel syntax and examples

=REPLACE(old_text, start_num, num_chars, new_text) Replaces a part of a text string with a different text string.

Section E – LOOKUP FUNCTIONS

47. MATCH

match function excel syntax and examples

=MATCH(lookup_value, lookup_array, [match_type]) Returns the relative position of an item in an array that matches a specified value in a specified order.

48. LOOKUP

lookup function excel syntax and examples

=LOOKUP(lookup_value, lookup_vector, [result_vector]) Looks up a value either from a one-row or one-column range or from an array. Obsolete in new versions of Excel, provided for backward compatibility.

49. HLOOKUP

hlookup function excel syntax and examples

=HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup]) Looks for a value in the top row of a table or array of values and return the value in the same column from a row you specify.

50. VLOOKUP

vlookup function excel syntax and examples

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]) Looks for a value in the leftmost column in a table, then return a value in the same row from a column you specify. By default, the table must be sorted in an ascending order.

Section F – REFERENCE FUNCTIONS

51. ADDRESS

address function excel syntax and examples

=ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text]) Creates a cell reference as text, given the specified row and column numbers.

52. CHOOSE

choose function excel syntax and examples

=CHOOSE(index_num, value1, [value2], [value3], …) Chooses a value or action to perform from a list of values, based on an index number.

53. INDEX

Array Form: =INDEX(array, row_num, [column_num]) Return the value of a specified cell or array of cells. index function excel (array form) syntax and examplesReference Form: =INDEX(reference, row_num, [column_num], [area_num]) Returns a reference to specified cells. index function excel (reference form) syntax and examples

54. INDIRECT

indirect function excel syntax and examples

=INDIRECT(ref_text, [a1]) Returns the reference specified by a text string.

55. OFFSET

offset function excel syntax and examples

=OFFSET(reference- rows, cols, [height], [width]) Returns a reference to a range that is a given number of rows and columns from a given reference.

Section G – DATE and TIME FUNCTIONS

56. DATE

date function excel syntax and examples

=DATE(year, month, day) Returns the number that represents the date in Microsoft Excel date-time code.

57. DATEVALUE

datevalue function excel syntax and examples

=DATEVALUE(date_text) Converts a date in the form of text to a number that represents the date in the Microsoft Excel date-time code.

58. TIME

time function excel syntax and examples

=TIME(hour, minute, second) Converts hours, minutes, and seconds given as numbers to an Excel serial number, formatted with a time format.

59. TIMEVALUE

timevalue function excel syntax and examples

=TIMEVALUE(time_text) Converts a text time to an Excel serial number for a time, a number from 0 (12:00:00 AM) to 0.999988424 (11:59:59 PM). Formats the number with a time format after entering the formula.

60. NOW

now function excel syntax and examples

=NOW() Returns the current date and time formatted as a date and time.

61. TODAY

today function excel syntax and examples

=TODAY() Returns the current date formatted as a date.

62. YEAR(), MONTH(), DAY(), HOUR(), MINUTE(), SECOND()

year month day hour minute second functions excel syntax and examples

YEAR(), MONTH(), DAY(), HOUR(), MINUTE() and SECOND() Functions All these functions take one the serial_number argument and return the respective time slice.

63. WEEKDAY

weekday function excel syntax and examples

=WEEKDAY(serial_number, [return_type]) Returns a number from 1 to 7 identifying the day of the week from a date.

64. DAYS

days function excel syntax and examples

=DAYS(end_date, start_date) Returns the number of days between the two dates.

65. NETWORKDAYS

networkdays function excel syntax and examples

=NETWORKDAYS(start_date, end_date, [holidays]) Returns the number of whole workdays between two dates.

66. WORKDAY

workday function excel syntax and examples

=WORKDAY(start_date, days, [holidays]) Returns the serial number of the date before or after a specified number of workdays.

Section H – MISCELLANEOUS FUNCTIONS

67. AREAS

areas function excel syntax and examples

=AREAS(reference) Returns the number of areas in a reference. An area is a range of contiguous cells or a single cell.

68. CHAR

char function excel syntax and examples

=CHAR(number) Returns the character specified by the code number from the character set for your computer.

69. CODE

code function excel syntax and examples

=CODE(text) Returns a numeric code for the first character in a text string, in the character set used by your computer.

70. CLEAN

clean function excel syntax and examples

=CLEAN(text) Removes all non-printable characters from text. Examples are Tab or New Line characters. Their codes are 9 and 10.

71. TRIM

trim function excel syntax and examples

=TRIM(text) Removes all spaces from a text string except for single spaces between words.

72. LEN

len function excel syntax and examples

=LEN(text) Returns the number of characters in a text string.

73. COLUMN() and ROW() Functions

column and row functions excel syntax and examples

=COLUMN([reference]) Returns the column number of a reference. =ROW([reference]) Returns the row number of a reference.

74. EXACT

exact function excel syntax and examples

=EXACT(text1, text2) Checks whether two text strings are exactly the same, and returns TRUE or FALSE. EXACT is case-sensitive.

75. FORMULATEXT

formulatext function excel syntax and examples

=FORMULATEXT(reference) Returns a formula as a string.

76. LEFT(), RIGHT(), and MID() Functions

left, mid and right functions excel syntax and examples

=LEFT(text, [num_chars]) Returns the specified number of characters from the start of a text string. =MID(text, start_num, num_chars) Returns the characters from the middle of a text string, given a starting position and length. =RIGHT(text, [num_chars]) Returns the specified number of characters from the end of a text string.

77. LOWER(), PROPER(), and UPPER() Functions

lower, proper, and upper functions excel with syntax and examples

=LOWER(text) Converts all letters in a text string to lowercase. =PROPER(text) Converts a text string to proper case – the first letter in each word in uppercase, and all other letters to lowercase. =UPPER(text) Converts a text string to all uppercase letters.

78. REPT

rept function excel syntax and examples

=REPT(text, number_times) Repeats text a given number of times.

79. SHEET

sheet function excel syntax and examples

=SHEET([value]) Returns the sheet number of the referenced sheet.

80. SHEETS

sheets function excel syntax and examples

=SHEETS([reference]) Returns the number of sheets in a reference.

81. TRANSPOSE

transpose function excel syntax and examples

=TRANSPOSE(array) Converts a vertical range of cells to a horizontal range, or vice versa.

82. TYPE

type function excel syntax and examples

=TYPE(value) Returns an integer representing the data type of a value: number = 1, text = 2; logical value = 4, error value = 16; array = 64.

83. VALUE

value function excel syntax and examples

=VALUE(text) Converts a text string that represents a number to a number.

Section I – RANK FUNCTIONS

84. RANK

rank function excel syntax and examples

=RANK(number, ref, [order]) This function is available for compatibility with Excel 2007 and earlier. Returns the rank of a number in a list of numbers: its size relative to other values in the list.

85. RANK.AVG

rank.avg function excel syntax and examples

=RANK.AVG(number, ref, [order]) Returns the rank of a number in a list of numbers. If more than one value has the same rank, the average rank is returned.

86. RANK.EQ

rank.eq function excel syntax and examples

=RANK.EQ(number, ref, [order]) Returns the rank of a number in a list of numbers: its size relative to other values in the list. If more than one value has the same rank, the top rank of that set of values is returned.

Section J – LOGICAL FUNCTIONS

87. AND

and function excel syntax and examples

=AND(logical1, [logical2], [logical3], [logical4], …) Checks whether all arguments are TRUE, and returns TRUE when all arguments are TRUE.

88. NOT

not function excel syntax and examples

=NOT(logical) Changes FALSE to TRUE, or TRUE to FALSE.

89. OR

or function excel syntax and examples

=OR(logical1, [logical2], [logical3], [logical4], …) Returns FALSE only when all arguments are FALSE.

90. XOR

xor function excel syntax and examples

=XOR(logical1, [logical2], [logical3], …) Returns TRUE only if exactly one of the arguments is TRUE.

Download the Excel Formulas Cheat Sheet PDF and Excel Files

Provide a Valid Email below to download the PDF and Excel Files with 102 Excel Functions.