Posts

Showing posts from September, 2019

IF Formula in Excel

Image
 IF Formula   IF function is Logical function which is used to perform a logical test. Example =IF(A1>33,”P”,”F”)  Result - P The value of Cell A1 is 50 which is greater than 33. The logical test is, IF the value is greater than 33 then result would be P else the result would be F. So the result is P.

Excel TRIM Formula

Image
 TRIM Formula   This formula is used to remove unnecessary space in a cell or Text. Example =TRIM(A1) Cell A1 has unnecessary space between Ram__Kumar __Gupta, so it removes unnecessary space and give RESULT = Ram_Kumar_Gupta.

Excel LEN Formula

Image
 LEN Formula  This formula is used to calculate the number of character in a cell or Text. Example =LEN(A1) Result - 6 Cell A1 value is Shivam which has 6 Character length.

Excel MAX Formula

Image
 MAX Formula  This formula is used to get the maximum value in cells or Range. Example =MAX(A1:A5) Result = 9 (See below)

MIN Formula in Excel

Image
 MIN Formula  This formula is used to get the minimum value in cells or Range. Example =MIN(A1:A5) Result = 2 (See Image Below)

AVERAGE in Excel

Image
 AVERAGE Formula  This basic formula in excel is used to get the average of the value in one or more cells or range. Example - 1 =AVERAGE(A1:A5)   Result = 4 (See Image below)

COUNTBLANK in Excel

Image
 COUNTBLANK formula  COUNTBLANK function is used to count blank values in the range. (Note: Only Space in a cell will not be considered as a blank cell). Example - 1 =COUNTBLANK(A1:A5) Result = 2  This will calculate the number of blank cell in Range. See Image below

COUNTA formula

Image
 COUNTA formula  This Formula is used to count the value in one or more cells (This will count the cells irrespective of Number or Text value) Example - 1 = COUNTA(A1:A5) Answer = 5  Note :-  This formula count both, that is, Text and Numeric Value. Here Cell A3 included. Result Below

COUNT in Excel

Image
COUNT in Excel It is used to Count the numeric value in one or more cells or range. Example - 1 =COUNT(A1:A5) Answer = 4, Because this formula only count numeric value it exclude A3 cell.

SUM in Excel

Image
Sum Formula This Basic Excel Formula is used to get the sum of the value in one or more cells or range Example - 1 =SUM(A1:A5) Answer is - 41 Example - 2 =SUM(1, 3,5,9) Answer is - 18