Developing Excel skills is critical in the working profession, regardless of the industry. An understanding of Excel formulas is vital if you are to improve on ways, compile information, and make sound recommendations. Now, consider the list of 30 basic Excel formulas everyone should know.
Overview:
An Excel formula is a mathematical phrase used to perform computations or work with data in a spreadsheet. It usually begins with an equal sign (=) and includes operands, operators, and functions. This allows users to automate computations and effectively make choices based on data.
They are crucial for several reasons:
Here are 30 Basic formulas that everyone should know.
=SUM(number1, [number2], ...)
=SUM(A1:A10)
=AVERAGE(number1, [number2], ...)
=AVERAGE(B1:B10)
=COUNT(value1, [value2], ...)
=COUNT(C1:C10)
=COUNTA(value1, [value2], ...)
=COUNTA(D1:D10)
=SUMIF(range, criteria, [sum_range])
=SUMIF(F1:F10, ">50")
=COUNTIF(range, criteria)
=COUNTIF(G1:G10, ">=60")
=ABS(number)
=ABS(Z1)
=ROUND(number, num_digits)
=ROUND(AA1, 2)
=IF(logical_test, value_if_true, value_if_false)
=IF(E1>50, "Pass", "Fail")
=AND(logical1, [logical2], ...)
=AND(S1>10, S2<20)
=OR(logical1, [logical2], ...)
=OR(T1>10, T2<5)
=NOT(logical)
=NOT(U1>10)
=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
=VLOOKUP(H1, A1:C10, 3, FALSE)
=HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
=HLOOKUP(I1, A1:E10, 5, FALSE)
=MATCH(lookup_value, lookup_array, [match_type])
=MATCH(J1, B1:B10, 0)
=INDEX(array, row_num, [col_num])
=INDEX(A1:D10, 3, 2)
=CONCATENATE(text1, [text2], ...)
=CONCATENATE("Hello ", "World")
=LEFT(text, [num_chars])
=LEFT(K1, 3)
=RIGHT(text, [num_chars])
=RIGHT(L1, 2)
=MID(text, start_num, num_chars)
=MID(M1, 2, 3)
=LEN(text)
=LEN(N1)
=TRIM(text)
=TRIM(O1)
=REPLACE(old_text, start_num, num_chars, new_text)
=REPLACE(P1, 1, 3, "New")
=SUBSTITUTE(text, old_text, new_text, [instance_num])
=SUBSTITUTE(Q1, "old", "new")
=TEXT(value, format_text)
=TEXT(R1, "mm/dd/yyyy")
=NOW()
=NOW()
=ISNUMBER(value)
=ISNUMBER(V1)
=ISBLANK(value)
=ISBLANK(W1)
=IFERROR(value, value_if_error)
=IFERROR(X1/Y1, "Error")
=RANDBETWEEN(bottom, top)
=RANDBETWEEN(1, 100)
The foundation of effective data management and analysis is Excel formulae. These thirty fundamental formulae will provide you with a strong basis on which to work while using Excel for various tasks, from straightforward computations to intricate data manipulations. You’ll learn new techniques to improve your work processes, extract more meaning from your data, and ultimately succeed in your career as you experiment and practice with these formulae.
If you want to learn more about Excel, consider doing Analytics Vidhya’s Free Course.