![]() |
| サイトマップ | |
|
関数 put into
は、ワークシート上の希望する列に計算結果を配置します。等号よりも早く処理します。
put
results into
col
(column)
引数 results は、ある式の結果、関数、変数のいずれかです。引数 column は配置したい列の番号、またはクォーテーションマークで囲まれた列名のいずれかです。
現在の挿入モードに応じて、列に配置されるデータは挿入あるいは上書きされます。
y = data(1,100)
の結果を列1に配置するには col(1) =
と入力すれば可能ですが、put y into col(1)
と入力するとより速く処理します。
The put into function places calculation results in a designated column on the worksheet. It operates faster than the equivalent equality relationship.
put results into col(column)
The results argument can be either the result of an equation, function or variable. The column argument is either the column number of the destination column, or the column title, enclosed in quotes.
Data put into columns inserts or overwrites according to the current insert mode.
To place the results of the equation y = data(1,100) in column 1, you can type col(1) = y. However, entering put y into col(1) runs faster.