Here are 10 common formulas in Microsoft Excel that are essential for various tasks:
SUM: Adds up a range of numbers.
=SUM(A1:A10)– Adds the values from cells A1 to A10.
AVERAGE: Calculates the average of a range of numbers.
=AVERAGE(B1:B10)– Returns the average of the values in cells B1 to B10.
IF: Performs a logical test and returns one value for TRUE and another for FALSE.
=IF(C1>50, "Pass", "Fail")– Checks if the value in C1 is greater than 50.
VLOOKUP: Searches for a value in the first column of a range and returns a value in the same row from another column.
=VLOOKUP(D1, A1:B10, 2, FALSE)– Looks for the value in D1 in the first column of A1and returns the corresponding value from the second column.
INDEX: Returns the value of a cell at a specified row and column within a range.
=INDEX(A1:B10, 3, 2)– Returns the value in the 3rd row and 2nd column of the A1range.
MATCH: Searches for a specified value in a range and returns the relative position.
=MATCH(E1, A1:A10, 0)– Finds the position of the value in E1 within the A1range.
CONCATENATE (or
&): Combines multiple text strings into one.=CONCATENATE(F1, " ", G1)or=F1 & " " & G1– Joins the text in F1 and G1 with a space in between.
COUNTIF: Counts the number of cells that meet a condition.
=COUNTIF(H1:H10, ">50")– Counts the cells in H1that have values greater than 50.
LEFT/RIGHT: Extracts a specified number of characters from the left/right of a text string.
=LEFT(I1, 5)– Extracts the first 5 characters from the text in I1.=RIGHT(I1, 3)– Extracts the last 3 characters from the text in I1.
LEN: Returns the number of characters in a text string.
=LEN(J1)– Counts the number of characters in cell J1.
These formulas cover a range of basic to intermediate Excel functionalities and are useful for various purposes like data analysis, conditional checks, and text manipulation

No comments:
Post a Comment