MS-EXCEL SHORTCUTS

Description: Adds all the numbers in a range of cells.

Formula: =SUM(number1, [number2], ...)

Example: =SUM(A1:A5) adds all the numbers from cell A1 to A5.

Description: Calculates the average of the numbers in a range of cells.

Formula: =AVERAGE(number1, [number2], ...)

Example: =AVERAGE(B1:B10) calculates the average of numbers in cells B1 to B10.

Description: Counts the number of cells that contain numbers in a range.

Formula: =COUNT(value1, [value2], ...)

Example: =COUNT(C1:C10) counts the number of cells with numbers in cells C1 to C10.

Description: Counts the number of non-empty cells in a range.

Formula: =COUNTA(value1, [value2], ...)

Example: =COUNTA(D1:D10) counts the number of non-empty cells in cells D1 to D10.

Description: Returns the largest number in a range of cells.

Formula: =MAX(number1, [number2], ...)

Example: =MAX(E1:E10) finds the largest number in cells E1 to E10.

Description: Returns the smallest number in a range of cells.

Formula: =MIN(number1, [number2], ...)

Example: =MIN(F1:F10) finds the smallest number in cells F1 to F10.

Description: Checks whether a condition is met and returns one value if TRUE, and another value if FALSE.

Formula: =IF(logical_test, value_if_true, value_if_false)

Example: =IF(G1>50, "Pass", "Fail") returns “Pass” if the value in G1 is greater than 50, otherwise it returns “Fail”.

Description: Joins several text strings into one string.

Formula: =CONCATENATE(text1, [text2], ...) or =CONCAT(text1, [text2], ...)

Example: =CONCATENATE(H1, " ", I1) or =CONCAT(H1, " ", I1) joins the text in H1 and I1 with a space in between.

Description: Searches for a value in the first column of a table and returns a value in the same row from a specified column.

Formula:=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

Example:=VLOOKUP(J1, A1:D10, 4, FALSE) searches for the value in J1 within the range A1and returns the value in the fourth column of the range.

Description: Searches for a value in the first row of a table and returns a value in the same column from a specified row.

Formula:=HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])

Example:=HLOOKUP(K1, A1:D10, 4, FALSE) searches for the value in K1 within the range A1and returns the value in the fourth row of the range.

Description: Returns the relative position of an item in an array that matches a specified value.

Formula: =MATCH(lookup_value, lookup_array, [match_type])

Example: =MATCH(L1, B1:B10, 0) returns the position of the value in L1 within the range B1

Description: Returns the value of an element in a table or array, selected by the row and column number indexes.

Formula:=INDEX(array, row_num, [column_num])

Example:=INDEX(A1:C10, 2, 3) returns the value in the second row and third column of the range A1

Description: Returns the specified number of characters from the start of a text string.

Formula: =LEFT(text, [num_chars])

Example: =LEFT(M1, 5) returns the first five characters in the text of cell M1.

Description: Returns the specified number of characters from the end of a text string.

Formula: =RIGHT(text, [num_chars])

Example: =RIGHT(N1, 3) returns the last three characters in the text of cell N1.

Description: Returns a specific number of characters from a text string, starting at the position you specify.

Formula: =MID(text, start_num, num_chars)

Example: =MID(O1, 3, 2) returns two characters from the text in cell O1, starting at the third character.

Description: Returns the number of characters in a text string.

Formula: =LEN(text)

Example: =LEN(P1) returns the number of characters in the text of cell P1.

Description: Removes all spaces from text except for single spaces between words.

Formula: =TRIM(text)

Example: =TRIM(Q1) removes extra spaces from the text in cell Q1.

Description: Converts all characters in a text string to lowercase.

Formula: =LOWER(text)

Example: =LOWER(R1) converts the text in cell R1 to lowercase.

Description: Converts all characters in a text string to uppercase.

Formula: =UPPER(text)

Example: =UPPER(S1) converts the text in cell S1 to uppercase.

Description: Capitalizes the first letter of each word in a text string.

Formula: =PROPER(text)

Example: =PROPER(T1) converts the text in cell T1 to proper case (first letter of each word in uppercase).

Description: Returns the current date.
Formula: =TODAY()
Example: =TODAY() returns the current date.

NOW FUNCTION

Description: Returns the current date and time.

Formula: =NOW()

Example: =NOW() returns the current date and time.

Description: Returns the serial number of a particular date.

Formula: =DATE(year, month, day)

Example: =DATE(2024, 7, 11) returns the serial number for July 11, 2024.

Description: Returns the serial number of a particular time.

Formula: =TIME(hour, minute, second)

Example: =TIME(14, 30, 0) returns the serial number for 2:30:00 PM.

Description: Returns the year of a date.

Formula: =YEAR(serial_number)

Example: =YEAR(U1) returns the year of the date in cell U1.

Description: Returns the month of a date.

Formula: =MONTH(serial_number)

Example: =MONTH(V1) returns the month of the date in cell V1.

Description: Returns the day of a date.

Formula: =DAY(serial_number)

Example: =DAY(W1) returns the day of the date in cell W1.

Description: Returns the hour of a time.

Formula: =HOUR(serial_number)

Example: =HOUR(X1) returns the hour of the time in cell X1.

Description: Returns the minute of a time.

Formula: =MINUTE(serial_number)

Example: =MINUTE(Y1) returns the minute of the time in cell Y1.

Description: Returns the second of a time.

Formula: =SECOND(serial_number)

Example: =SECOND(Z1) returns the second of the time in cell Z1.

Description: Rounds a number to a specified number of digits.

Formula: =ROUND(number, num_digits)

Example: =ROUND(3.14159, 2) returns 3.14, rounding the number to 2 decimal places.

Description: Rounds a number down towards zero.

Formula: =ROUNDDOWN(number, num_digits)

Example: =ROUNDDOWN(3.14159, 2) returns 3.14, rounding the number down to 2 decimal places.

Description: Rounds a number up, away from zero.

Formula: =ROUNDUP(number, num_digits)

Example: =ROUNDUP(3.14159, 2) returns 3.15, rounding the number up to 2 decimal places.

Description: Rounds a number up to the nearest multiple of significance.

Formula: =CEILING(number, significance)

Example: =CEILING(3.14159, 0.1) returns 3.2, rounding the number up to the nearest 0.1.

Description: Rounds a number down to the nearest multiple of significance.

Formula: =FLOOR(number, significance)

Example: =FLOOR(3.14159, 0.1) returns 3.1, rounding the number down to the nearest 0.1.

Description: Returns the absolute value of a number.

Formula: =ABS(number)

Example: =ABS(-5) returns 5.

Description: Returns the square root of a number.

Formula: =SQRT(number)

Example: =SQRT(16) returns 4.

Description: Returns the result of a number raised to a power.

Formula: =POWER(number, power)

Example: =POWER(2, 3) returns 8.

Description: Returns the remainder after a number is divided by a divisor.

Formula: =MOD(number, divisor)

Example: =MOD(10, 3) returns 1.

Description: Adds the cells specified by a given condition or criteria.

Formula:=SUMIF(range, criteria, [sum_range])

Example:=SUMIF(A1:A10, ">5") adds all numbers in the range A1that are greater than 5.

Description: Counts the number of cells that meet a specified condition or criteria.

Formula:=COUNTIF(range, criteria)

Example:=COUNTIF(B1:B10, ">=10") counts the number of cells in the range B1that are greater than or equal to 10.

Description: Calculates the average of the cells specified by a given condition or criteria.

Formula:=AVERAGEIF(range, criteria, [average_range])

Example:=AVERAGEIF(C1:C10, "<5") calculates the average of the cells in the range C1that are less than 5.

On Key

Related Posts

Tableau Formulas

Most Commonly Used Formulas in Tableau (With Sample Sheet and Examples)

Unlock the Power of Tableau with Ready-to-Use Formulas!
Explore a comprehensive collection of Tableau formulas categorized for quick reference – including Numeric, String, Date, Logical, Aggregate, and Type Conversion functions. Whether you’re just starting out or already working on dashboards, this guide will help you master Tableau calculations faster with real examples and syntax-ready code.

Practice Question on Java Constructor

Java Constructor Practice Questions with Solutions | Pivot Edu Unit

Java is one of the most popular programming languages, and understanding constructors in Java is essential for mastering Object-Oriented Programming (OOP). If you are preparing for Java interviews, college exams, or simply want to improve your Java skills, this set of Java constructor practice questions will help you. At Pivot Edu Unit, Dehradun, we provide

How to Analyze Data Like a Pro – A Beginner’s Guide to Excel

Introduction In today’s data-driven world, Excel is one of the most powerful tools for analyzing and interpreting data. Whether you’re a student, a professional, or an aspiring data analyst, learning Excel can help you make informed decisions and stand out in your career. In this beginner-friendly guide, we’ll walk you through the key Excel functions

Digital Marketing Interview Question

Top Digital Marketing Interview Questions & Answers for 2025

🚀 Digital Marketing is one of the fastest-growing fields, and companies are actively looking for skilled professionals. Whether you’re a beginner or an experienced marketer, acing a Digital Marketing interview requires a strong understanding of key concepts, tools, and trends. At Pivot Edu Unit, Dehradun, we prepare our students with real-world projects and interview-ready skills.