diff --git a/helpcontent2/source/text/scalc/01/04060110.xhp b/helpcontent2/source/text/scalc/01/04060110.xhp
index 3b9ba40869..3939f137c1 100644
--- a/helpcontent2/source/text/scalc/01/04060110.xhp
+++ b/helpcontent2/source/text/scalc/01/04060110.xhp
@@ -6,9 +6,9 @@
*
* $RCSfile: 04060110.xhp,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: kz $ $Date: 2006-10-05 12:59:19 $
+ * last change: $Author: rt $ $Date: 2006-12-01 16:50:58 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -44,12 +44,12 @@
Sun Microsystems, Inc.
-converted from old format - fpe
+converted from old format - fpe
text in cells; functions
-functions; text
+functions; text functionsFunction Wizard;textText Functions
@@ -232,7 +232,7 @@
FIXED
-Specifies that a number be displayed with a fixed number of decimal places and with or without a thousands separator. This function can be used to apply a uniform format to a column of numbers.
+Returns a number as text with a specified number of decimal places and optional thousands separators.SyntaxFIXED(Number; decimals; no thousands separators)
@@ -242,14 +242,15 @@
No thousands separators (optional) determines whether the thousands separator is used. If the parameter is a number not equal to 0, the thousands separator is suppressed. If the parameter is equal to 0 or if it is missing altogether, the thousands separators of your current locale setting are displayed.Example
-FIXED(1234567.89;3) returns 1,234,567.890. FIXED(1234567.89;3;1) returns 1234567.890.
+FIXED(1234567.89;3) returns 1,234,567.890 as a text string.
+FIXED(1234567.89;3;1) returns 1234567.890 as a text string.LEFT functionLEFT
-Returns the first character or characters in a text string.
+Returns the first character or characters of a text.SyntaxLEFT(text; number)
@@ -291,7 +292,7 @@
MID
-Returns a text segment of a character string. The parameters specify the starting position and the number of characters.
+Returns a text string of a text. The parameters specify the starting position and the number of characters.SyntaxMID(text; start; number)
@@ -357,7 +358,7 @@
RIGHT
-Defines the last character or characters in a text string.
+Returns the last character or characters of a text.SyntaxRIGHT(text; number)
@@ -430,13 +431,13 @@
T
-This function converts a number to a blank text string.
+This function returns the target text, or a blank text string if the target is not text.SyntaxT(value)
-
-value is the value to be converted. Also, a reference can be used as a parameter. If the referenced cell includes a number or a formula containing a numerical result, the result will be an empty string.
+If value is a text string or refers to a text string, T returns that text string; otherwise it returns a blank text string.Example
-T(12345) becomes an empty string "", if 12345 is formatted as a number. T("12345") returns 12345.
+T(12345) returns an empty string "".
+T("12345") returns the string 12345.TEXT function