0% found this document useful (0 votes)
92 views

Excel Functions

The document describes several Excel functions: 1. The PRODUCT function multiplies two or more numbers. The ABS function returns the absolute (positive) value of a number. The POWER function raises a number to a power. The SQRT function calculates the square root of a number. 2. The ROUND function rounds a number to a specified number of decimal places. The Left, Right, and Mid functions extract parts of a string starting from the left, right, or middle based on the number of characters specified.

Uploaded by

dhvani91
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
92 views

Excel Functions

The document describes several Excel functions: 1. The PRODUCT function multiplies two or more numbers. The ABS function returns the absolute (positive) value of a number. The POWER function raises a number to a power. The SQRT function calculates the square root of a number. 2. The ROUND function rounds a number to a specified number of decimal places. The Left, Right, and Mid functions extract parts of a string starting from the left, right, or middle based on the number of characters specified.

Uploaded by

dhvani91
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

An example of multiplying two numbers, such as 235 and 546, using the PRODUCT function would be: =PRODUCT( 235 , 546 ) 2.The ABS function changes negative values to positive (i.e. absolute) and takes the form =ABS(value) 3.POWER Although you can use the caret (^) operator to build a formula that raises a number to any power, the POWER function accomplishes the same thing. For example, =5.9^3 You can have Excel perform the same calculation with the POWER function by entering this formula: =POWER(5.9,3) 4.The SQRT calculates the square root of any number that you specify as its sole number argument. For example, if you use the SQRT function to build the following formula in a cell: =SQRT(144) 5.The ROUND function rounds a number to a specified number of digits. For example, if cell A1 contains 23.7825, and you want to round that value to two decimal places, you can use the following formula: =ROUND(A1, 2) The result of this function is 23.78. 6. In Excel, the Left function allows you to extract a substring from a string, starting from the left-most character. The syntax for the Left function is: Left( text, number_of_characters )
=Left(A1, 5) would return "Alpha" =Left(A2, 8) would return "techonth"

7. In Excel, the Right function extracts a substring from a string starting from the right-most character. The syntax for the Right function is: Right( text, number_of_characters )
=Right(A1, 4) would return "soup" =Right("Excel", 3) would return "cel"

8.In Excel, the Mid function extracts a substring from a string (starting at any position). The syntax for the Mid function is: Mid( text, start_position, number_of_characters )
=Mid(A1, 5, 4) would return "abet" =Mid(A2, 7, 3) would return "The"

You might also like