KnowledgeBoat Logo
|

Computer Applications

Spot the error in each of the following:

  1. =SUM ('C9':C14)
  2. =$B*$3*C$
  3. =COUNT(9, 12, 17, 26, A$)
  4. =AVERAGE(A1:An)/n
  5. =MAX('19', 70, 101)
  6. =ADD(24+54+77-38)

Spreadsheet

56 Likes

Answer

The corrected formulae are given below:

  1. =SUM(C9:C14)
  2. =$B$3 * C$4
  3. =COUNT(9, 12, 17, 26)
    This will give the output as 4 since there are 4 numeric values given as input to the count function.
  4. =AVERAGE(A1:An)
    where 'n' is the row number of the cell till where the average is required.
  5. =MAX(19,70,101)
  6. =SUM(24,54,77)-38

Answered By

31 Likes


Related Questions