Text Format
Use 'Text' format to add a prefix or suffix to string data. The special tag '{0}' acts as a place holder for the actual data. Use the escape sequence “\n” to insert a carriage return in the text.
1. Consider a text column containing the following values:
Annie
Eric
Robert
Sue
The text format “Employee name: {0}” will display these values as follows:
Employee Name: Annie
Employee Name: Eric
Employee Name: Robert
Employee Name: Sue
2. Consider a text column containing the following values:
NJ
NY
CA
AZ
The text format “-{0}-” will display these values as follows:
-NJ-
-NY-
-CA-
-AZ-
| << Currency Format | © 1996-2013 InetSoft Technology Corporation (v11.4) | Percent Format >> |