You are on page 1of 7

S No Function Name Purpose Return Value Syntax

A number representing FIND (find_text,


Get the location of text
1 FIND the location of within_text,
in a string
find_text. [start_num])

Extract text from the left One or more LEFT (text,


2 LEFT
of a string characters. [num_chars])

3 VALUE Convert text to a number A numeric value. VALUE (text)

Extract text from the One or more RIGHT (text,


5 RIGHT
right of a string characters. [num_chars])

LEN Get the length of text. Number of characters LEN (text)


MID (text,
Extract text from inside a The characters
MID start_num,
string extracted.
num_chars)
Arguments Summary

find_text - The text to find.


The Excel FIND function returns
within_text - The text to search
the position (as a number) of
within.
one text string inside another.
start_num - [optional] The starting
When the text is not found,
position in the text to search.
FIND returns a #VALUE error.
Optional, defaults to 1.

text - The text from which to extract The Excel LEFT function extracts
characters. a given number of characters
num_chars - [optional] The number from the left side of a supplied
of characters to extract, starting on text string. For example,
the left side of text. Default = 1. LEFT("apple",3) returns "app".

The Excel VALUE function


converts text that appears in a
recognized format (i.e. a
number, date, or time format)
text - Tthe text value to convert to a
into a numeric value. Normally,
number.
the VALUE function is not
needed in Excel, because Excel
automatically converts text to
numeric values.

The Excel RIGHT function


text - The text from which to extract
extracts a given number of
characters on the right.
characters from the right side
num_chars - [optional] The number
of a supplied text string. For
of characters to extract, starting on
example, RIGHT("apple",3)
the right. Optional, default = 1.
returns "ple".

The Excel LEN function returns


the length of a given text string
text - The text for which to calculate as the number of characters.
length. LEN will also count characters
in numbers, but number
formatting is not included.
text - The text to extract from. The Excel MID function extracts
start_num - The location of the first a given number of characters
character to extract. from the middle of a supplied
num_chars - The number of text string. For example,
characters to extract. =MID("apple",2,3) returns "ppl"
Examples
The FIND function will return the location of
the first instance of find_text in within_text.
The location is returned as the number of
characters from the start of within_text.
Start_num is optional and defaults to 1.
FIND will return #VALUE if find_text is not TEXT TO COLUMNS CONVERSION USING DEMILIATOR
found in within_text .
FIND is case-sensitive and does not support
wildcards.
Use the SEARCH function to search without
case-sensitivity and/or to use wildcards.
Use the LEFT function when you want to
extract characters starting at the left side of
text.
num_chars is optional and defaults to 1.
USING AMPERSAND FOR CONCATING
LEFT will extract digits from numbers as well.
Number formatting (i.e. the currency symbol
$) is not part of a number so is not counted or
extracted.

Use the VALUE function to convert text to a


numeric value.
The VALUE function converts text that
appears in a recognized format (i.e. a number,
date, or time format) into a numeric value.
Normally, Excel automatically converts text to FLASH FILL FEATURE
numeric values as needed, so the VALUE
function is not needed.
Microsoft states that the VALUE function is
provided for compatibility with other
spreadsheet programs.

Use the RIGHT function when you want to


extract characters starting at the right side of
text.
num_chars is optional and defaults to 1.
RIGHT will extract digits from numbers as
well.
Number formatting is not part of a and will
not be extracted or counted.
LEN is a useful when you want to count how
many characters there are in some text.
Numbers and dates will also return a length.
Number formatting is not included. (i.e. the
length of "100" formatted as "$100.00" is still
3).
MID returns a specific number of characters
from a text string, starting at start_num and
continuing through start_num + num_chars.
Use the MID function when you want to
extract text from inside a text string, based on
location and length.
You can use FIND or SEARCH to locate
start_num when you don't know the location
in advance.
NVERSION USING DEMILIATOR

You might also like