EXACT Function

The EXACT function compares two text strings in a case-sensitive manner. If the two strings are exactly the same, EXACT returns TRUE. If the two strings are not the same (taking into account upper and lower case) EXACT returns FALSE.

The EXACT function takes two...Read more

DOLLAR Function

The DOLLAR function converts a number to text, formatted as currency. The name of the function and the currency symbol used is based on language settings of the computer.

It's important to understand that DOLLAR returns text and not a number, so the result cannot be used in a numeric ...Read more

CODE Function

The CODE function returns a numeric code for a given character. For example, CODE("a") returns the code 97:

=CODE("a") // returns 97

With the character "a" in cell A1, the formula below returns the same result:

...Read more

CLEAN Function

The CLEAN function accepts a text string and returns text that has been "cleaned" of line breaks and other non-printable characters. You can use CLEAN to strip non-printing characters and strip line breaks from text. For example, to clean text in cell A1:

...Read more

CHAR Function

The CHAR function returns a character when given a valid character code. Use the CHAR to translate ASCII code page numbers into actual characters. For example:

=CHAR(65) // returns "A"
=CHAR(97) // returns "a"

the CHAR function takes just...Read more

Pages