XL Sheet Formulas
XL sheet formula's:
1. SUM :-
Formula: =SUM(5, 5) or =SUM(A1, B1) or =SUM(A1:B5)
2. COUNT :- The count formula counts the number of cells in a range that have numbers in them.
Formula: =COUNT(A1:A10)
3. COUNTA :- Counts the number of non-empty cells in a range. It will count cells that have numbers and/or any other characters in them.
Formula: =COUNTA(A1:A10)
4. LEN :- The LEN formula counts the number of characters in a cell. Be careful though! This includes spaces.
Formula: =LEN(A1)
5. TRIM :- Gets rid of any space in a cell, except for single spaces between words.
Formula: =TRIM(A1)
6. RIGHT, LEFT, MID
Formulas: = RIGHT(text, number of characters), =LEFT(text, number of characters), =MID(text, start number, number of characters).
RIGHT(A1,2)
7. CONCATENATE :- A fancy word for combining data in 2 (or more) different cells into one cell.
Formula: =CONCATENATE(A1," ", B2)
Comments
Post a Comment