Writes variable values with the specified format in the output line.
| Valid in: | DATA step |
|---|---|
| Categories: | CAS |
| File-Handling | |
| Type: | Executable |
Table of Contents
moves the output pointer to a specified line or column.
| See | Column Pointer Controls |
|---|---|
| Line Pointer Controls | |
| Example | Writing a Character between Formatted Values |
specifies the variable whose value is written.
specifies a list of variables whose values are written.
| Requirement | The (format-list) must follow the (variable-list). |
|---|---|
| See | How to Group Variables and Formats |
| Example | Writing a Character between Formatted Values |
specifies a format to use when the variable values are written. To override the default alignment, you can add an alignment specification to a format:
| -L | left-aligns the value. |
| -C | centers the value. |
| -R | right-aligns the value. |
| Tip | Ensure that the format width provides enough space to write the value and any commas, dollar signs, decimal points, or other special characters that the format includes. |
|---|---|
| Examples | This PUT statement uses the format dollar7.2 to write
the value of X:
|
When X is 100, the formatted value uses seven columns:
|
|
| Example | Overriding the Default Alignment of Formatted Values |
specifies a list of formats to use when the values of the preceding list of variables are written. In a PUT statement, a format-list can include
specifies the format to use to write the variable values.
| Tip | You can specify either a SAS format or a user-written format. |
|---|---|
| See | SAS Formats and Informats: Reference |
specifies one of these pointer controls to use to position a value: @, #, /, +, and OVERPRINT.
| Example | Writing a Character between Formatted Values |
specifies one or more characters to place between formatted values.
| Example | This statement places a hyphen between the formatted
values of CODE1, CODE2, and CODE3:
|
|---|---|
| Example | Writing a Character between Formatted Values |
specifies to repeat n times the next format in a format list.
| Restriction | The (format-list) must follow (variable-list). |
|---|---|
| See | How to Group Variables and Formats |
| Example | This statement uses the 7.2 format to write GRADES1,
GRADES2, and GRADES3 and the 5.2 format to write GRADES4 and GRADES5:
|
holds an output line for the execution of the next PUT statement even across iterations of the DATA step. These line-hold specifiers are called trailing @ and double trailing @.
| Restriction | The trailing @ or double trailing @ must be the last item in the PUT statement. |
|---|---|
| See | Using Line-Hold Specifiers |
The Formatted output describes the output lines by listing the variable names and the formats to use to write the values. You can use a SAS format or a user-written format to control how SAS prints the variable values. For a complete description of the SAS formats, see Definition of Formats in SAS Formats and Informats: Reference.
With formatted output, the PUT statement uses the format that follows the variable name to write each value. SAS does not automatically add blanks between values. If the value uses fewer columns than specified, character values are left-aligned and numeric values are right-aligned in the field that is specified by the format width.
Formatted output, combined with pointer controls, makes it possible to specify the exact line and column location to write each variable. For example, this PUT statement uses the dollar7.2 format and centers the value of X starting at column 12:
put @12 x dollar7.2-c;
When you want to write values in a pattern on the output lines, use format lists to shorten your coding time. A format list consists of the corresponding formats separated by either blanks or commas and enclosed in parentheses. It must follow the names of the variables enclosed in parentheses.
For example, this statement uses a format list to write the five variables SCORE1 through SCORE5, one after another, using four columns for each value with no blanks in between:
put (score1-score5) (4. 4. 4. 4. 4.);
A shorter version of the previous statement is
put (score1-score5) (4.);
You can include any of the pointer controls (@, #, /, +, and OVERPRINT) in the list of formats, as well as n*, and a character string. You can use as many format lists as necessary in a PUT statement, but do not nest the format lists. After all the values in the variable list are written, the PUT statement ignores any directions that remain in the format list. For an example, see Including More Format Specifications Than Necessary.
You can also specify a reference to all elements in an array as (array-name {*}), followed by a list of formats. However, you cannot specify the elements in a _TEMPORARY_ array in this way. This PUT statement specifies an array name and a format list:
put (array1{*}) (4.);
For more information about how to reference an array, see Arrays.
This example formats some values and writes a - (hyphen) between the values of variables BLDG and ROOM:
data _null_;
input name & $15. bldg $ room;
put name @20 (bldg room) ($1. "-" 3.);
datalines;
Bill Perkins J 126
Sydney Riley C 219
;
The program writes these lines to the SAS log:
Bill Perkins J-126
Sydney Riley C-219
This example includes an alignment specification in the format:
data _null_;
input name $ 1-12 score1 score2 score3;
put name $12.-r +3 score1 3. score2 3.
score3 4.;
datalines;
Joseph 11 32 76
Mitchel 13 29 82
Sue Ellen 14 27 74
;
The program writes these lines to the SAS log: (footnote 1)
----+----1----+----2----+----3----+----4
Joseph 11 32 76
Mitchel 13 29 82
Sue Ellen 14 27 74
The value of the character variable NAME is right-aligned in the formatted field. (Left alignment is the default for character variables.)
This format list includes more specifications than are necessary when the PUT statement executes:
data _null_;
input x y z;
put (x y z) (2.,+1);
datalines;
2 24 36
0 20 30
;
The PUT statement writes the value of X using the 2. format. Then, the +1 column pointer control moves the pointer forward one column. Next, the value of Y is written with the 2. format. Again, the +1 column pointer moves the pointer forward one column. Then, the value of Z is written with the 2. format. For the third iteration, the PUT statement ignores the +1 pointer control.
The program writes these lines to the SAS log: (footnote 2)
----+----1----+
2 24 36
0 20 30