Using the design menus to custom format a cell
There are two design menus that can appear when you right-click an object on the layout. They are:
Order: This is applicable to all objects, and this menu has a submenu that allows you to adjust the Layer of an object.
Custom Format Cells: This is applicable only to the three grid objects (Table Box, Straight Table, and Pivot Table), and this menu allows you to apply your own custom color, border, and font options to a cell.
These menu items do not appear by default. There are two ways of making them available. You can either turn on the Design Grid option (from the View menu), or you can turn them on by changing your User Preferences, which we will do in this recipe.
Getting ready
Load the following script:
Load * Inline [ Country, Sales, Costs USA, 1203, 1043 UK, 987, 995 France, 1118, 1022 Germany, 876, 754 ];
How to do it…
Use the following steps to custom format a cell in the table:
Create a straight table with Country as dimension and...