This set entered on 8-3-14
8.2.14.8
a. TEXT FUNCTIONS
b. TEXT FORMATTING FUNCTIONS
They handle tasks like parsing, or find whether a particular string of characters occurs in a field. They also let you change all instances of specific characters within a field, or count text length.
They can make part of the text in a field bold and red, etc. For example, they can search inside a field for the words “Propane Sale!” and make them red, leaving everything else untouched.
splitting text apart in useful ways.
a. Characters
b. Words
c. Values
When it does the dividing, it gives you three ways to decide which parts you want: left, middle, or right.
you have data that is in a well known format and you need to access pieces of it, such as the area code, last four digits of a credit card number, etc.
The first letter in a text value is number one, the second number two, etc. Then you can ask for the first few characters, or the last few, or just the fifth, sixth, and seventh. EVERY LETTER, NUMBER, PUNCTUATION MARK, SPACE, TAB, CARRIAGE RETURN, OR OTHER SYMBOL COUNTS AS A CHARACTER.
the first few letters of a text value, eliminating the rest.
Left ( First Name ; 1 ) & Left ( Last Name ; 1 )