Multiple formats in one table



Release:

4.6  •  5.0  •  5.1  •  5.2  •  5.3  •  5.4  •  6.0  •  6.1  •  6.2  •  6.3  •  6.4  •  6.5



You can change the number format for a subset of cells in a table by selecting those cells and then bringing up the Number Format Dialog. This is intuitive, but it is often easier and preferable for your table to infer the number formats for each slice from the number formats of its parent variables. This happens if you define the result as a list of variables, for example:

Index Years := 2007..2012
Variable DollarX := Table(Years)(...) { Formatted as dollars }
Variable PercentX := DollarX/40K { Formatted as percent }
Variable MultiformatX := [DollarX, PercentX]
MultiformatX →
Chapter7 8.png

This table uses the number format set for each variable responsible for a row here — as long as you don’t override their settings by setting a format for MultiformatX.

See Also


Comments


You are not allowed to post comments.