property Column.FormatColumn as String
Specifies the format to display the cells in the column.

TypeDescription
String A string expression that defines the format to display the cell, including HTML formatting, if the cell supports it.
By default, the FormatColumn property is empty. The cells in the column apply the specified format only if it is valid (i.e., not empty and syntactically correct). The FormatColumn property defines a format for displaying all cells in the column consistently using a predefined structure. This format can include a combination of variables, constants, strings, dates, operators, and values to create a customized and uniform data presentation. The value operator gives the value to be formatted.  A string is delimited by ", ` or ' characters, and inside they can have the starting character preceded by \ character, ie "\"This is a quote\"". A date is delimited by # character, ie #1/31/2001 10:00# means the January 31th, 2001, 10:00 AM. The cell's HTML format is applied only if the CellValueFormat or Def(exCellValueFormat) is exHTML. If valid, the FormatColumn is applied to all cells for which the CellCaptionFormat property is not exComputedField. This way you can specify which cells use or not the FormatColumn property. The FormatColumn and FormatCell properties support auto-numbering functions like explained bellow The ComputedField property indicates the formula of the computed column.

The CellValue property of the cell is being shown as:

In other words, all cells applies the format of the FormatColumn property, excepts the cells with the FormatCell property being set. If the cell belongs to a column with the FireFormatColumn property on True, the Value parameter of the FormatColumn event shows the newly caption for the cell to be shown.

The value keyword in the FormatColumn property indicates the value to be formatted. 

The expression supports cell's identifiers as follows:

Usage samples:

This property supports auto-numbering (index, pos, ...) expressions as described here. This property/method supports predefined constants and operators/functions as described here.