Jump to content

Faq/Calc/015

From The Document Foundation Wiki
< Faq | Calc
This page is a translated version of the page Faq/Calc/015 and the translation is 50% complete.

LibreOffice Calc のエラーコード (エラー:NNN) の意味は何ですか?

エラーコード
ERRORTYPE セルの表示

ERROR.TYPE

コード ステータスバーのメッセージ エラーの説明
(例)
(なし)

###

列幅が狭すぎるため、書式設定されたセルの内容全体を表示できません。 これは実際にはエラー値ではないため、対応する数値エラーコードはありません。 この問題を解決するには、列幅を広げるか、書式 ▸ セル ▸ 配置 を選択し、「プロパティ」領域で"テキストを自動的に折り返す"または "セルサイズに合わせて縮小" のいずれかをチェックして、テキストを現在の列幅に合わせます。 その他の要因は、フォントサイズ、フォントタイプ、ズーム率です。

(なし)

#FMT

この値は、この数値形式の有効な範囲外です。 これは実際にはエラー値ではないため、対応する数値エラーコードはありません。 出力エラーの文字列。例: -1E+16 が入力値で、セルの書式設定が 日付 になっている。

32767

#N/A 7

NotAvailable 使用できる値がありません

数式の結果は利用できません。 数式は、検索対象を見つけることができません これは実際にはエラー値ではないため、対応する数値エラーコードはありません。 ISNA() をこの値に適用すると、TRUE が返されます。 この値は、失敗したLOOKUP(および類似の)関数、および NA() によって返されます。

501

IllegalChar 無効な文字が使われています

数式に無効な文字が含まれています。 無効な名前エラー (525) と同じですが、数式内で発生する点が異なります。 例: =100 の代わりに =1¤0=1E2 (科学表記法) の代わりに =1Eq を入力した場合。

502

IllegalArgument 無効な引数が使われています

関数の引数に無効な値があります。 例: =SQRT(-3) のような数式です。また、DGET()関数のように、条件に一致するセルが複数見つかった場合にも発生します。

503

#NUM! 6

IllegalFPOperation 無効な数値が使われています

無効な浮動小数点演算です。 計算結果が定義された値の範囲外です。 定義された値の範囲外(値が大きすぎるか小さすぎる)になる計算(オーバーフロー)。 例: =1000^500

504

IllegalParameter パラメータリストにエラー

関数の引数の型が無効です。 たとえば、関数の引数は数値ではなくテキストです。 例: =VLOOKUP(1;0;1) ここで、2番目の引数は単純な数字では ない と想定されています。

505

内部構文エラー

設定されていません。

506

小数点記号が無効です

設定されていません。

507

Pair かっこ内のエラー

ブラケット または 括弧 がありません。

508

PairExpected かっこ内のエラー

大括弧または小括弧が不足しています。たとえば、左括弧のない閉じ括弧や、式の途中にある閉じ括弧が不足しています(数式の最後に必要な小括弧が不足している場合は、自動的に追加されます)。例: =1)

509

OperatorExpected 演算子が足りません

例: =2(3+4)

510

VariableExpected 変数が足りません

例えば、意味を為さない2つの演算子が続いている場合などです。例: =1+*2

511

1 (LO > 7.6)

ParameterExpected 変数が足りません

関数に必要な数の引数を指定していません。 例: 引数のない OR()

512

CodeOverflow 数式が長すぎます

Formula too long. Compiler: This refers to the internal number of bits (512 maximum), which has nothing to do with the length of the character string in the formula in question, but depends on the number of operators, variables, parentheses, etc. The total number of internal tokens (that is, operators, variables, brackets) in the formula exceeds 8192, or the total number of matrices the formula creates exceeds 150. Interpreter: Formulas which generate too many matrices at once (150 maximum) and Basic functions which receive as parameters an array that is too large (OxFFE maximum is 65534 octets). This includes Basic functions that receive too large an array as a parameter (OxFFE maximum is 65534 octets).

513

StringOverflow 文字列が長すぎます

Character string too long. Compiler: An identifier in the formula exceeds 1024 characters (UTF-16 code points) in size. Interpreter: The result of an operation on a string of characters would exceed (2^28)-1 ((228)-1) characters (UTF-16 code points, so 512MiB) in size. Example: =REPT("1234567890";10^8).

514

StackOverflow 内部のオーバーフロー

Internal capacity exceeded. An internal calculation stack overflow occurred.

515

UnknownState 内部構文エラー

Unknown error.

516

UnknownVariable 内部のシンタックスエラー

Matrix is expected on the calculation stack, but it is not available. The calculation stack should contain a matrix but it is not there.

517

UnknownOpCode 内部のシンタックスエラー

Unknown operation code. A document containing a newer feature is loaded in an older version of Calc that did not support that feature.

518

UnknownStackVariable Internal syntax error

Variable not available. A variable was supposed to be popped from the calculation stack but it is not available / not there.

519

#VALUE! 3

NoValue No value

No valid result is possible. A function cannot supply a value corresponding to its definition; or a cell referenced in the formula contains text instead of an expected number. Example: ="string"+0.

520

UnknownToken Internal syntactical error

The compiler has generated a code which it cannot interpret. Example: =2*(3+4)*.

521

#NULL! 1 (LO > 7.6)

NoCode No code or (no) intersection

No code or no intersection (since LibreOffice 7.6; it was set as "Internal syntax error" up until version 7.5 included). The intersection of ranges produced zero cells. Example: =SUM(A1:A2!B1:B2).

522

CircularReference Circular reference

A formula refers directly or indirectly to itself and the Iterations option is not activated under Tools ▸ Options ▸ LibreOffice Calc ▸ Calculate. Example: =A1 introduced in the same cell.

523

NoConvergence Calculation does not converge

The calculation procedure does not converge. A function missed a targeted value (tends towards a given value but does not reach it), or iterative references do not reach the minimum change within the defined maximum steps (increments) that are set.

524

#REF! 4

NoRef Not a valid reference

Compiler: a row or column heading could not be detected. Interpreter: the formula refers to a cell whose column, row, or table/worksheet has been deleted or which is outside the table/worksheet. The formula within the cell uses a reference that does not exist. Either a column or a row description name could not be resolved, or the column, row, or worksheet that contains a referenced cell is missing or it is outside the worksheet. Example: See ERROR.TYPE.

525

#NAME? 5

NoName Invalid name

An identifier could not be evaluated: no valid reference, no valid function name, no column/row label, no macro, incorrect decimal separator, add-in not found. Example: =bob*5 when there is no cell named "bob".

526

Internal syntax error

Obsolete, no longer used; it may occur in (old) documents loaded in old versions of Calc.

527

Internal overflow

Internal capacity exceeded. Interpreter: Excessive nesting of references (the cell references a cell which references a cell which references a cell which...). References (such as when a cell references another cell...) are too encapsulated or deeply/excessively nested. This is an internal error and should not be displayed in LibreOffice.

528

Not used.

529

CellNoValue

Interpreter, internal: no numeric value but numeric queried.

530

#ADDIN?

NoAddin Add-in not found

Add-In not found.

‍531

#MACRO?

NoMacro Macro not found

Macro not available / not found.

532

#DIV/0! 2

DivisionByZero Division by zero

The denominator of a division operation ("/") is 0 (zero). Other functions can also return this error; for example:

  • VARP with less than 1 argument
  • STDEVP with less than 1 argument
  • VAR with less than 2 arguments
  • STDEV with less than 2 arguments
  • STANDARDIZE with stdev=0
  • NORMDIST with stdev=0
533

NestedArray Nested arrays are not supported.

Example: ={1;{2}}.

534

NotNumericString

Interpreter, internal: no numeric value but numeric queried.

535

JumpMatHasResult

Interpreter, internal: jump matrix already has a result at this position.

536

ElementNaN

Interpreter, internal: (matrix) element is not a numeric value.

537

RetryCircular

Internal: keep dirty, retry interpreting next round.

538

MatrixSize Array or matrix size

Invalid size of Array. The maximum limit for sorting has been exceeded. The limit is twice the maximum number of rows, so for 1,048,576 rows the limit is 2,097,152 entries. Also obtained whenever a temporary matrix could not be allocated due to its size requirement.

539

BadArrayContent Unsupported inline array content

Bad inline array content, non-value/non-string. Example: ={1+2}.

540

LinkFormulaNeedingCheck External content disabled

A function that requires (re)loading of external sources is encountered and the user has not confirmed reloading of external sources yet.

ERRORTYPE セルの表示

ERROR.TYPE

コード ステータスバーのメッセージ エラーの説明
(例)