Excel Formulas
Excel Formulas
1. COUNT 7. UPPER
The Excel COUNT function returns a count of values that are numbers. Numbers include negative Converts text to uppercase. =UPPER(text)
numbers, percentages, dates, times, fractions, and formulas that return numbers. Empty cells and text
values are ignored. Count of numeric values 8. PROPER
Capitalizes the first letter in a text string and any other letters in text that follow any character other than
2. COUNTA a letter. Converts all other letters to lowercase letters. =PROPER(text)
The Excel COUNTA function returns the count of cells that contain numbers, text, logical values, error
values, and empty text (""). COUNTA does not count empty cells. Count the number of non-blank cells 9. AVERAGE
Returns the average (arithmetic mean) of the arguments. For example, if the range A1:A20 contains
3. COUNTIF numbers, the formula =AVERAGE(A1:A20) returns the average of those numbers.
COUNTIF is an Excel function to count cells in a range that meet a single condition. COUNTIF can be used
to count cells that contain dates, numbers, and text. Count cells that match criteria. A number 10. MAX
representing cells counted. The Excel MAX function returns the largest numeric value in the data provided
TRUNC and INT are similar in that both return integers. TRUNC removes the fractional part of the number. 13. LEN
INT rounds numbers down to the nearest integer based on the value of the fractional part of the number. The LEN function in Excel is also known as the LENGTH Excel function, which identifies the length of a
INT and TRUNC are different only when using negative numbers: TRUNC(-4.3) returns -4, but INT(-4.3) given string. In addition, this function calculates the number of characters in a given string provided as an
returns -5 because -5 is the lower number. input. Therefore, it is a TEXT function in Excel. It is also an inbuilt function that can be accessed by typing
=LEN( and providing a string as input.
6. ROUND, ROUND UP, ROUND DOWN, INT, TRUNC