Top Qs
Timeline
Chat
Perspective
Symbolic Link (SYLK)
From Wikipedia, the free encyclopedia
Remove ads
Symbolic Link (SYLK) is a Microsoft file format typically used to exchange data between applications, specifically spreadsheets. SYLK files conventionally have a .slk
suffix. Composed of only displayable ANSI characters, it can be easily created and processed by other applications, such as databases.
Remove ads
Microsoft has never published a SYLK specification. Variants of the format are supported by Multiplan, Microsoft Excel, Microsoft Works, OpenOffice.org, LibreOffice[1] and Gnumeric. The format was introduced in the 1980s and has not evolved since 1986.[2]
A commonly encountered (and spurious) 'occurrence' of the SYLK file happens when a comma-separated value (CSV) format is saved with an unquoted first field name of 'ID', that is the first two characters match the first two characters of the SYLK file format. Microsoft Excel (at least to Office 2016) will then emit misleading error messages relating to the format of the file, such as "The file you are trying to open, 'x.csv', is in a different format than specified by the file extension...".[3][4]
SYLK is known to cause security issues, as it allows an attacker to run arbitrary code, offers the opportunity to disguise the attack vector under the benign-looking appearance of a CSV file, and is still enabled by default on recent (2016) versions of Microsoft Excel.[2]
Remove ads
Limitations
SYLK does not have support for Unicode. Even if a SYLK file is created by an application that supports Unicode (for example Microsoft Excel), the SYLK file will be encoded in the current system's ANSI code page, not in Unicode. If the application contained characters that were displayable in Unicode but have no code point in the current system's code page, they will be converted to question marks ('?') in the SYLK file.
The semicolon is treated as a field separator in SYLK, so cannot be used unescaped in data values. If a character string in the SYLK file is to contain a semicolon (;) then it should be prefixed with another semicolon so the string would appear as e.g., "WIDGET;;AXC1254". MS Excel will strip the first semicolon on import and the data element will appear as "WIDGET;AXC1254".
Each line of a SYLK input file must be no longer than 260 characters. Otherwise, Microsoft Excel will issue an error message and skip loading the overlong line.
Remove ads
Description
Summarize
Perspective
This article needs additional citations for verification. (March 2025) |
Below is the contents of a sample SYLK file:
ID;P C;Y1;X1;K"Row 1" C;Y2;X1;K"Row 2" C;Y3;X1;K"Total" C;Y1;X2;K11 C;Y2;X2;K22 C;Y3;X2;K0;ER1C2+R2C2 E
This file, when read by a spreadsheet application that supports SYLK would be displayed like the following:
Row 1 | 11 |
Row 2 | 22 |
Total | 33 |
SYLK files consist of a sequence of records with semicolon-delimited lists of fields. In this file, the ID
record (specifically the ID;
at the start of the file) acts as a magic number, identifying the file as a SYLK file, as all SYLK files must start with an ID
record. The P
field without a value indicates the file was not generated by Microsoft Excel or Microsoft's older spreadsheet application Multiplan. Each C
record describes one cell in the spreadsheet located at cell (X,Y)
(the values of the X
and Y
fields). The K
fields define the raw value of each cell. Strings of text are enclosed in quotation marks. Otherwise, the value is listed without quotes. Dates and times are internally stored as numbers of whole and fractional days since a set epoch and displayed accordingly with custom cell formatting options. The E
field defines the value of the cell to be the value of an expression (equivalent, here, to the more familiar formula =B1+B2
). Lastly, the E
record marks the end of the file. It must be the last record in the file.
Formatting
The F
record is used to define and apply styles to cells, and P
records can be used to define shared number formats, along with font information. For example:
ID;P P;PGeneral P;P_(* #,##0_);;_(* \-#,##0_);;_(* "-"_);;_(@_) P;P_(* #,##0.00_);;_(* \(#,##0.00\);;_(* "-"??_);;_(@_) P;P_("$"* #,##0.00_);;_("$"* \(#,##0.00\);;_("$"* "-"??_);;_(@_) C;Y1;X1;K"Row 1" C;Y2;X1;K"Row 2" C;Y3;X1;K"Total" C;Y1;X2;K11 C;Y2;X2;K22 C;Y3;X2;K0;ER1C2+R2C2 F;P2;C2 E
is rendered similar to the following:
Row 1 | 11.00 |
Row 2 | 22.00 |
Total | 33.00 |
The F
record's P2
field indicates that the number format in the third and penultimate P
record is being used, and the record's C2
field applies that format to the second column. Indices of P
records are zero-indexed, while columns and rows are one-indexed. In this example, the following number formats are defined:
P0
, the general number format, which displays the number as it is listed in the file,P1
, a number format that uses thousands separators and no decimal places,P2
(applied to column two), the same number format asP1
but with two decimal places,- and
P3
, the same number format asP2
but with a dollar sign at the start.
The W
field of the F
record defines the widths of a group of columns in characters. For instance, the records F;W1 1 20
and F;W2 2 30
set the widths of the first two columns of a spreadsheet to 20 and 30 characters wide respectively. Likewise, F;W1 5 5
would set the widths of the first five columns to be five characters wide each.
The F
field of the F
record defines both the number format and text alignment of a cell, column, row, or spreadsheet. Unlike the P
record, this field only supports a basic set of number formats. As an example, a F;FD3C
record would use the default number format with three digits and center-aligned text.
The following SYLK file:
ID;P P;PGeneral C;Y1;X1;K"Row 1 Left Justify" F;P0;FG0L C;Y2;X1;K"Row 2 Right Justify" F;P0;FG0R C;Y3;X1;K"Total at Center" F;P0;FG0C C;Y1;X2;K11 C;Y2;X2;K22 C;Y3;X2;K0;ER1C2+R2C2 F;Y1;X2;FF2L F;Y2;X2;FF2R F;Y3;X2;F$2C F;W1 2 25 E
would be rendered, ignoring the incorrect column widths, like:
Row 1 Left Justify | 11.00 |
Row 2 Right Justify | 22.00 |
Total at Center | $33.00 |
The P
record can also be used to store font information, in addition to the number format. A cell with a P;FCambria;M240;SB;L4
record applied would be rendered using the Cambria font (FCambria
), 12 point font (M240
: the value of the M
field divided by 20 is the font size in points), boldface (SB
), and green (L4
).[5]
Remove ads
Syntax
Summarize
Perspective
This section needs additional citations for verification. (March 2025) |
The basic syntax of a SYLK file is shown below (in the ABNF syntax):
SYLK-file = 1*(Record)
Record = RecordType *(";" Field) LF
A list of valid record types along with their valid fields is shown below:
B
record- A record used to tell the number of rows and columns in a spreadsheet. It is recommended[by whom?] that it comes before the
C
andF
records. Supported fields: C
record- A record used to describe a cell's contents.
E
record- A record that marks the end of the file. It must be the last record in the file.
F
record- A record that follows any
P
records and applies the formats described by those records (or fields described by theF
record itself) to the entire spreadsheet or a single cell, column, or row. Supported fields: - At least one of the following fields must be present:
C
,D
,E
,G
,H
,K
,P
,R
,W
,X
, orY
. - The
X
andY
fields define cell formats, theR
field defines default row formats, theC
field defines default cell formats, and theD
field sets the default spreadsheet format. ID
record- A header record used to identify the type and creator of a spreadsheet. It must be the first record in the file. Supported fields:
NE
record- A record that links an area on the spreadsheet to another area on an external spreadsheet. Must be placed after any
NU
records. Supported fields: NL
record- A record that describes chart external links.[clarification needed]
NN
record- A record used to define named functions, macros, and expressions. It is more efficient[according to whom?] if an
NN
record is defined prior to when its name is first used. Supported fields: NU
record- A record that precedes any
NE
records and describes file name substitutions. Supported fields: O
record- A record that describes spreadsheet options. Supported fields:
P
record[5]- A record that describes cell formatting and precedes any
F
records. Supported fields:[clarification needed] W
record- A record that describes window definitions.[clarification needed]
Date and time values are stored as a floating point numbers. The whole number part is the number of days after either 1 January 1900 (if the O
record has a V
field with value 0
, indicating the 1900 date system is being used) or 1 January 1904 (if instead this value is 4
, indicating the 1904 date system is in use). The 1904 date system is only used in older versions of Microsoft Excel on Macintosh systems prior to 2011.[6] The decimal component is the number of seconds divided by 86,400 (the number of seconds in a day) that have elapsed since 00:00 or 12:00 AM.
It is possible to convert serial date values to Unix time by subtracting 25,569 or 24,109 (the number of days between 1 January 1970, the Unix epoch, and 1 January 1900 or 1 January 1904 respectively), and then multiplying by 86,400. Conversion from Unix time to SYLK time can be done by doing the reverse (dividing by 86,400 and adding 25,569 or 24,109). However, to be displayed properly, the formatting of the cell must be set to a custom format such as P;Pdd/mm/yyyy\ hh:mm:ss
.
Microsoft Excel limits cells in imported SYLK files to 255 characters. LibreOffice does not have this limitation.[citation needed]
Remove ads
External links
- Detailed examples can also be found at here
Syntax for SYLK can be found at:
- Microsoft SYLK summary (see also the Abusing the SYLK file format article for some useful information)
- GFF Format Summary: Microsoft SYLK
and at:
Limits related to reading and saving with Excel:
References
Wikiwand - on
Seamless Wikipedia browsing. On steroids.
Remove ads