Top Banner
Excel Workshop ~ Text Functions ~ Brought to you by comixie.com 2015
9
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Excel workshop pt1

Excel Workshop~ Text Functions ~

Excel Workshop~ Text Functions ~

Brought to you by comixie.comBrought to you by comixie.com

2015

Page 2: Excel workshop pt1

•Text functions

•Cube functions

•Database functions

•Date and time functions

•Engineering functions

•Financial functions

• Information functions

•Logical functions

•Lookup and reference functions

•Math and trigonometry functions

•Statistical functions

•User defined functions

Excel Workshops

Page 3: Excel workshop pt1

2015

CLEAN function

Page 4: Excel workshop pt1

Description2015

The CLEAN function removes all non-printable characters from a text. It was created to remove the first 32 non-printable characters in the 7bit ASCII code - values 0 to 31. Also, according to Microsoft, additional non-printable characters in the Unicode set - values 127, 129, 141, 143, 144, and 157 cannot be remove with this function.

SYNTAX: CLEAN(text_to_clean)

EXAMPLE:

=CLEAN(A5)=CLEAN(SUBSTITUTE(A5,CHAR(127),””)

Page 5: Excel workshop pt1

2015

CHAR function

Page 6: Excel workshop pt1

Description2015

The CHAR function takes a number between 1 and 255 specifying the character from the character set used on your computer and translate it into character.

SYNTAX: CHAR(numeric_value_of_the_character)

EXAMPLE:

=CHAR(66) displays the 66 character in the set - B=CHAR(HEX2DEC(41)) displays the 65 character in the set - A=CHAR(67) displays the 67 character in the set - C

Page 7: Excel workshop pt1

2015

EXACT function

Page 8: Excel workshop pt1

Description2015

The EXACT function compares two string and return TRUE if the two string are exactly the same. This function doesn’t consider formatting but is case sensitive.

SYNTAX: EXACT(text1, text2)

EXAMPLE:

=EXACT(“This is ”,”not the same”) FALSE=EXACT(“NOT THE SAME”,”not the same”) FALSE=EXACT(“THIS IS ok”, “THIS IS ok”) TRUE=EXACT(“this is A”,”this is ” & char(65)) TRUE ~ char(65) is A

Page 9: Excel workshop pt1

Brought to you by comixie.com

training workshops