Column Setting - Basic Property

In the “Basic Property” tab, you can change the basic properties ​​for columns.

  • [A] Header Label – Set the label to be displayed in the column header

    • [B] Auto-Sync Label in Column Field - For columns tied to Salesforce fields (Field Columns), set the label displayed in the column header to synchronize with the field's label definition in Salesforce. If the synchronization setting is enabled, the header label becomes non-editable and automatically reflects the field's label definition on initial loading of the sheet.

    • [C] Allow Wrapping - Automatically wrap the text if the length of the header label is longer than the column width

    • [D] Use Vertical Writing Direction - Display the header label in vertical writing direction

  • [E] Kind of Column – Displays the kind of column you selected when adding a column (read only). The following types are available.

    • Field Column – A column that is tied to a specific field of Salesforce object.

    • Formula Column – A column that displays the calculated result of a formula defined in the sheet. Unlike formula fields in Salesforce, it is defined in the column setting.

    • Data Column – A column that contains data that is only available within the sheet; it is available separately from the fields defined in Salesforce.

    • Matrix Column – A column to display the time-series matrix transformed data. Displays data in nested columns.

    • Series Column – A column that displays a group of data corresponding to each series value inside a matrix column.

  • [F] Column Data Type – Displays the data type of the data referenced by the column (read only). If the kind of column is Field Column, displays the data type of referencing Salesforce field. If the kind of column is Formula Column or Data Column, displays the data type you selected when adding the column.

  • [G] Column Name – Displays the unique column name in the sheet (read only). Used to reference the column from formula columns, JavaScript API, etc.

  • [H] Reference Field – If the kind of column is Field Column, displays the name and API reference name of the field. If the field is accessed through relationships, displays the path to the field with the relationship names.

  • [I] Display Type – Select the display type of the data. Normally, the best display format is selected according to the data type of the column. You can choose from the following types:

    • Text – Displays data as it is without changing the format in particular.

    • Rich Text – Parses HTML-tagged text and displays it in rich text.

    • Number – Displays data converted to numeric format. In addition you can specify "Number Format", "Digits", and "Prefix Text" / "Suffix Text".

    • Date/Datetime – Displays data by converting it to date / date time format. You can set "Date/Datetime Format" additionally.

    • Check (TRUE/FALSE) – Converts the value to a boolean value and displays it as a checkmark when it is true.

  • [J] Text Align – Specify the horizontal alignment of the text to display in the cell.

  • [K] Text Wrapping – If the text to be displayed in a cell does not fit in the width of the column, it is displayed on multiple lines. If the text contains line feeds, they are also reflected in the display.

  • [L] Anchor Link (URL) – If you want to set an anchor link to a cell, enter the URL of the link destination. It can include references of field values by enclosing their API reference names with ${ and }, such as ${Id}.

By inserting a <br> character string in the the header label text, it is possible to forcely wrap the label in new line.

If the column's display type is Rich Text, the tags that can be parsed as HTML are those that can be expressed in Salesforce's standard rich text editor. If the HTML contains tags or attributes that contain any executable scripts, those tags and attributes will be disabled.

Custom Format of Date/Datetime

When "Date/Datetime" is selected in the display type, "Date/Datetime Format" can be set. Typical date/datetime formats can be selected from the selection list, but you can input any format string by selecting “Custom”.

The following tokens can be used in the format string.

CategoryTokenOutput

Month

M

1 2 ... 11 12

MM

01 02 ... 11 12

MMM

Jan Feb ... Nov Dec

MMMM

January February ... November December

Quarter

Q

1 2 ... 11 12

Day of Month

D

1 2 ... 30 31

DD

01 02 ... 30 31

Day of Year

DDD

1 2 ... 364 365

DDD

001 002 ... 364 365

Day of Week

d

0 1 ... 5 6

dd

Su Mo ... Fr Sa

ddd

Sun Mon ... Fri Sat

dddd

Sunday Monday ... Friday Saturday

Week of Year

w

0 1 ... 52 53

ww

01 02 ... 52 53

Year

YY

70 71 ... 29 30

YYYY

1970 1971 ... 2029 2030

AM/PM

A

AM PM

a

am pm

Hour

H

0 1 ... 22 23

HH

00 01 ... 22 23

h

1 2 ... 11 12

hh

01 02 ... 11 12

HH

00 01 ... 22 23

Minute

m

0 1 ... 58 59

mm

00 01 ... 58 59

Second

s

0 1 ... 58 59

ss

00 01 ... 58 59

Fractional Second

S

0 1 ... 9

SS

00 01 ... 98 99

SSS

000 001 ... 998 999

Time Zone

Z

-07:00 -06:00 ... +06:00 +07:00

ZZ

-0700 -0600 ... +0600 +0700

Unix Timestamp

X

1360013296

Unix Millisecond Timestamp

x

1360013296123

Last updated