Value in A8 Result ACCA Pakistan ACCA LEFT (A8,4)
Value in A8 Result ACCA Pakistan ACCA LEFT (A8,4)
Syntax : LEFT(StringValue,NoOfCharacters)
Function written C8 : Left(A8,4) will extract ACCA from the value resided in Cell A8
Value in A8 Result
ACCA Pakistan ACCA =LEFT(A8,4)
RIGHT Function is used to extract specified number of characters from Right of string
Syntax : RIGHT(StringValue,NoOfCharacters)
Function written B8 : Left(A8,8) will extract Pakistan from the value resided in Cell A8
Value in A8 Result
ACCA Pakistan Pakistan =RIGHT(A8,8)
MID Function is used to extract specified number of characters from within the string
Syntax : MID(StringValue,StartingPosition,NoOfCharacters)
Function written B8 : MID(A8,6,3) will extract Pak from the value resided in Cell A8
Value in A8 Result
ACCA Pakistan Pak =MID(A8,6,3)
UPPER Function is used to convert a text or a string to Upper Case
Syntax : UPPER(StringValue)
Value in A8 Result
ACCA Pakistan ACCA PAKISTAN =UPPER(A8)
LOWER Function is used to convert a text or a string to Lower Case
Syntax : LOWER(StringValue)
Value in A8 Result
ACCA Pakistan acca pakistan =LOWER(A8)
PROPER Function is used to convert a first letter of each word in a string to Capital letter of the
string while remaining text will be in lower case
Syntax : PROPER(StringValue)
Value in A8 Result
ACCA Pakistan Acca Pakistan =PROPER(A8)
er of the
CONCATENATE Function is used to convert two or more string values to a single string value or combine two string
Syntax : CONCATENATE(FirstStringValue,SeconfStringValue,ThirdStringValue)
Function written C8 : CONCATENATE(A8,B8) will resulted AccaPakistan. There is no space in between, to insert a
space we need to modify a formula and insert space in between
We can also use an & operator instead of Concatenate function to have the same effect on strings
Syntax : FirstStringValue&econfStringValue&ThirdStringValue
Function written C17 : A17&B17 will resulted AccaPakistan. There is no space in between, to insert a space we need
to modify a formula and insert space in between
NATE(A8,B8)
NATE(A8," ",B8)
e effect on strings
Syntax : FIND(TextValueToBeFound,StringValueToBeSearched)
Function written C8 : FIND("C",A8) will resulted 2 which is the first occurance of C in ACCA
We can also find the next occurance of string by modifying obove formula by specifying the position to start search
with in the string
Syntax : FIND(TextValueToBeFOUND,StringValueToBeSearched,StartingPositionOfSearching)
Function written C17 : FIND("C",A17,3) will return as next C is located at position 3 with in the string
C in ACCA
Searching)
Syntax : SEARCH(TextValueToBeFound,StringValueToBeSearched)
Function written C8 : SEARCH("C",A8) will resulted 2 which is the first occurance of C in ACCA
We can also find the next occurance of string by modifying obove formula by specifying the position to start search
with in the string
Syntax : SEARCH(TextValueToBeFOUND,StringValueToBeSearched,StartingPositionOfSearching)
Function written C17 : SEARCH("A",A17,2) will return 4 as next A is located at position 4 with in the string
of C in ACCA
OfSearching)
A",A17,2)
Remarks
ACCAACCAACCA It will return ACCAACCAACCA
The Excel Rept function returns a supplied text string, repeate
specified number of times.
Note:
If number_times is zero, the function returns an empty string
If number_times is a decimal, it is truncated to an integer.
urns a supplied text string, repeated a
s:
)
as follows:
ed.number_times-The number of times that
peated.