50 Excel Formulas For Data Analysts - Part 3
50 Excel Formulas For Data Analysts - Part 3
FORMULAS
FOR DATA
ANALYSTS
PART-1
PART -3 Swipe Right
@sakshi-savardekar10
13 LEN()
14 LEFT()
15 RIGHT()
16 PROPER()
17 UPPER()
PART-1
18 LOWER()
@sakshi-savardekar10
13 LEN()
Returns the length of a given text string
as the number of characters including space and punctuation
Syntax : =LEN(text)
@sakshi-savardekar10
14 LEFT()
Extracts a given number of characters from the left
side of a text string
Syntax: =LEFT(text,[num_chars])
text - The text from which to extract characters.
num_chars - [optional]
The number of characters to extract, starting on the left. Default = 1.
@sakshi-savardekar10
15 RIGHT()
Extracts a given number of characters from the right
side of a text string
Syntax: =RIGHT(text,[num_chars])
text - The text from which to extract characters.
num_chars - [optional]
The number of characters to extract, starting on the right. Default = 1.
@sakshi-savardekar10
16 PROPER()
Capitalizes each word in a given text string
Syntax : =PROPER(text)
@sakshi-savardekar10
17 UPPER()
Converts a text string to all uppercase letters
Syntax : =UPPER(text)
@sakshi-savardekar10
18 LOWER()
Converts a text string to all lowercase letters
Syntax : =LOWER(text)
@sakshi-savardekar10