Skip to main content

Posts

Uses of Left Right Mid Text Functions in Excel

Why To Use Left Function in Microsoft Excel? The Left function is used to get first N characters from the given text string or the text contained in a cell. Syntax of LEFT Function in Excel LEFT(Text, Number_of_characters) For example, the function LEFT("Normal",3) will return Nor. Syntax of LEFT function with Cell Reference LEFT(CellReference, Number_of_characters) For example, let the cell A2 contains the text Humanity , the function LEFT(A2,5) will return Human . Similarly if Cll A12 contains "England" then Left(A12,5) will give "Engla" that is first five characters of contents of cell A12 from left side. How To Implement LEFT Function in Excel Uses of Excel Functions Left Right in Excel Worksheet    First of all place the cursor in an empty cell next to cell A2, to enter the function. Type = Type the function name LEFT Type the left parenthesis ( Type A2 from keyboard. Type , (that is Comma) Type 5 so that the first 5

Learn Practical Use of MAX Function and MIN Function in Excel Worksheets

What is MAX Function? Learn Practical Use of MAX Function and MIN Function in Excel Worksheets The MAX function is used to get the maximum number from different given numbers in Excel Worksheet. Syntax of MAX Function in Excel MAX(number1,number2,number3,...numberN) For example the function MAX(5,100,35) will return 100, since 100 is largest number of all 5, 100 and 35. Syntax of MAX Function using Cell References MAX(CellRef1:CellRef2) Where CellRef1 is the cell reference of the first cell and CellRef2 is the cell reference of the last cell in the given cell range in Excel Worksheet. What is MIN Function? The MIN function is used to get the minimum number from different given numbers in Excel Worksheet. Syntax of MIN Function in Excel MIN(number1,number2,number3,...numberN) For example the function MIN(5,100,35) will return 5, since 5 is the smallest number of all 5, 100 and 35. Syntax of MIN Function using Cell References MIN(CellRef1:CellRef2) Where Cel

Use of Average Function in Excel Worksheet With Examples

What is the Use of Average Function in Excel?  The Average Function of Excel is used to get the average of the numbers in Excel Worksheet. Syntax of Average Function in Excel    Average(number1, number2, number3, ... number N)   For Example Average(10,15,20) will return 15. Because, Average is calculated by adding all the numbers and then dividing the total by count of the numbers. In above example: Average = (10+15+20) / 3 Which evaluates to 45 / 3 that is 15. Syntax of Average Function in Excel Using Cell references  Average(cellRef1:CellRef2)  where cellRef1 is the cell reference of the first cell and cellRef2 is the cell reference of the last cell in Average function to calculate the required average, in Excel worksheet. Consider the above figure for example: the cells A2, B2, C2, D2 and E2 contains the numbers 5, 15, 30, 40, 50 respectively. How To Implement Average Function in Excel  First of all place the cursor in an empty cell to enter the function. T