Microsoft Excelは、値を入力したり、理解できないアクションを実行しようとすると、エラーを返す場合があります。エラーにはいくつかの種類があり、各エラーはあなたが犯した可能性のある特定の種類の間違いに関連しています。
#N/Aエラーは標準のExcelエラーです。データを誤って参照した場合に表示されます。たとえば、ルックアップテーブルの外部に存在しない、または存在する参照データ、ルックアップ値のスペルミス、ルックアップ値に余分な文字(コンマ、アポストロフィ、またはスペース文字)を追加した場合などです。
エラーはルックアップ値を誤って参照したときに発生するため、最も一般的には、LOOKUP、VLOOKUP、HLOOKUP、MATCH関数などのルックアップ関数に関連付けられています。#N / Aエラーの理由、例、およびいくつかの修正を見てみましょう。
#N/Aエラーの理由
ワークシートで#N/Aエラーが発生する原因は次のとおりです。
- ルックアップ値のスペルを間違えた(または余分なスペース文字を挿入した)
- ルックアップテーブルの値のスペルを間違えた(または余分なスペース文字を挿入した)
- ルックアップ範囲が数式に正しく入力されていません
- ルックアップテーブルに存在するデータ型とは異なるデータ型をルックアップ値に使用しました(つまり、数値の代わりにテキストを(text instead of numbers)使用しました)
- 入力したルックアップ値がルックアップテーブルに見つかりませんでした
#N/Aエラーの例
例としてVLOOKUP関数を使用して、 (use the VLOOKUP function)LOOKUP、HLOOKUP、MATCHなどの(MATCH)Excel関数を使用した後に#N / Aエラーが発生する可能性があることを理解しましょう。これらの関数は、同様の構文構造を共有しているためです。
たとえば、Excelワークブックにリストされている従業員とそのボーナスの長いリストがあるとします。
VLOOKUP数式を使用して、セル参照(セルD4)を挿入する関連する[lookup_value]を入力し、 ([lookup_value])[table_array](A2:B7)を定義し、[col_index_num](2)を定義します。
[range_lookup]と呼ばれる最後の引数については、1(またはTRUE )を使用して、完全一致を取得するようにExcelに指示する必要があります。2(またはFALSE )に設定すると、 (FALSE)Excelに近似一致を探すように指示され、誤った出力が得られる可能性があります。
選択した少数の従業員のボーナスを取得するための式を設定したが、ルックアップ値のスペル(Suppose)を間違えたとします。Excelはルックアップテーブルの値と完全に一致するものを見つけることができないため、#N/Aエラーが発生します。
では、このエラーを修正するには何をする必要がありますか?
#N/Aエラーを修正する方法
#N / Aエラーのトラブルシューティングにはいくつかの方法がありますが、修正は主に2つのアプローチに分類できます。
- 入力の修正(Correcting the inputs)
- エラーをトラップする(Trapping the error)
入力の修正(Correcting the inputs)
理想的には、このチュートリアルで前述した理由を使用して、エラーの原因を特定する必要があります。原因を修正することで、エラーを取り除くだけでなく、正しい出力を得ることができます。
このガイドに記載されている理由をチェックリストとして使用することから始める必要があります。これを行うと、エラーを排除するために修正する必要がある誤った入力を見つけるのに役立ちます。たとえば、スペルミスの値、余分なスペース文字、またはルックアップテーブルのデータ型が正しくない値である可能性があります。
エラーをトラップする(Trapping the error)
または、個別に間違いをチェックすることなくワークシートからエラーを排除したい場合は、いくつかのExcel(just )数式を(Excel)使用できます。エラーをトラップするために特別に作成された関数もあれば、複数の関数を使用して論理構文を構築してエラーを排除するのに役立つ関数もあります。
次のいずれかの関数を使用して、#N/Aエラーをトラップできます。
- IFERROR関数(IFERROR Function)
- IFNA機能(IFNA Function)
- ISERROR関数とIF関数の組み合わせ(A Combination of ISERROR Function and IF Function)
- TRIM機能(TRIM Function)
1.IFERROR関数(1. IFERROR Function)
IFERROR関数は、エラーを返すセルの出力を変更することを唯一の目的として作成されました。(IFERROR)
IFERROR関数を使用すると、エラーの代わりにセルに表示する特定の値を入力できます。たとえば、VLOOKUPを使用しているときにセルE2に#N / Aエラーがある場合は、次のように数式全体をIFERROR関数にネストできます。
IFERROR(VLOOKUP(E4、B2:C7,2,1)、"従業員が見つかりません"(IFERROR(VLOOKUP(E4,B2:C7,2,1),“Employee not found”)
VLOOKUP関数でエラーが発生した場合、エラーの代わりに「従業員(Employees)が見つかりません」というテキスト文字列が自動的に表示されます。
数式がエラーを返したときに空白のセルを表示する場合は、2つの引用符( "")を挿入するだけで空の文字列を使用することもできます。
IFERROR関数はすべてのエラーに対して機能することに注意してください。したがって、たとえば、IFERROR関数内にネストした数式が#DIVエラーを返した場合でも、IFERRORはエラーをトラップし、最後の引数の値を返します。
2.IFNA機能(IFNA Function)
IFNA関数は、IFERROR関数のより具体的なバージョンですが、まったく(exactly)同じように機能します。2つの関数の唯一の違いは、IFERROR関数がすべての(all)エラーをトラップするのに対し、IFNA関数は#N/Aエラーのみをトラップすることです。
たとえば、VLOOKUP#N / Aエラーがある場合は次の式が機能しますが、#VALUEエラーの場合は機能しません。
IFNA(VLOOKUP(E4、B2:C7,2,1)、「従業員が見つかりません」(IFNA(VLOOKUP(E4,B2:C7,2,1),“Employee not found”)
3.ISERROR関数とIF関数の組み合わせ(A Combination of the ISERROR Function and the IF Function)
エラーをトラップする別の方法は、IF関数と一緒にISERROR関数を使用することです。(ISERROR)これは、エラーを検出するためにISERROR関数に依存し、論理テストに基づいて出力をレンダリングするためにIF関数に依存するという点で、本質的にIFERROR関数のように機能します。(IFERROR)
この組み合わせは、#N / A関数だけでなく、 IFERROR関数などの(IFERROR)すべての(all)エラーで機能します。次に、IF関数とISERROR(ISERROR)関数を使用してExcel VLOOKUP#N/Aエラーをトラップした場合の構文の例を示します。
=IF(ISERROR(VLOOKUP(E4,B2:C7,2,1)),VLOOKUP(E4,B2:C8,2,1),”Employee not found”)
4.TRIM機能(TRIM Function)
ルックアップ値に誤って挿入されたスペース文字は、#N/Aエラーを引き起こす可能性があることを前に説明しました。ただし、ワークシートに既に入力されているルックアップ値の長いリストがある場合は、各ルックアップ値からスペース文字を個別に削除する代わりに、 TRIM関数を使用できます。(TRIM)
まず、 TRIM(TRIM)関数を使用して、名前の先頭と末尾のスペースを削除する別の列を作成します。
次に、名前の新しい列をVLOOKUP関数のルックアップ値として使用します。
マクロの#N/Aエラーを修正
マクロの#N/Aエラーを修正するために使用できる特定の式やショートカットはありません。マクロを作成したときにマクロに(macro when you created it)いくつかの関数を追加した可能性があるため、各関数に使用されている引数をチェックし、それらが正しいかどうかを確認して、macoの#N/Aエラーを修正する必要があります。
#N/Aエラーが修正されました
#N / Aエラーの修正は、原因を理解すればそれほど難しくありません。出力についてあまり気にせず、数式でエラーが発生したくない場合は、IFERRORやIFNAなどの関数を使用して、#N/Aエラーに簡単に対処できます。
How to Fix #N/A Errors in Excel Formulas like VLOOKUP
Microsoft Excel may return an errоr when you input a value or try to perform an action that it fails to understand. Therе are several tyреs of errors, and each error iѕ associated with specific typеs of mistakes you might have made.
The #N/A error is a standard Excel error. It appears when you’ve referenced data incorrectly. For example, referenced data that doesn’t exist or exists outside of the lookup table, made a spelling error in the lookup value, or added an extra character in the lookup value (a comma, apostrophe, or even a space character).
Since the error occurs when you’ve incorrectly referenced a lookup value, it’s most commonly associated with lookup functions like LOOKUP, VLOOKUP, HLOOKUP, and the MATCH function. Let’s look at the reasons, an example, and some fixes for the #N/A error.
Reasons for #N/A Error
Following are the reasons that can cause a #N/A error on your worksheet:
- You’ve misspelled a lookup value (or inserted an extra space character)
- You’ve misspelled a value in the lookup table (or inserted an extra space character)
- The lookup range has been entered incorrectly into the formula
- You’ve used a different data type for the lookup value than the one that exists in the lookup table (i.e., used text instead of numbers)
- The lookup value you entered was not found in the lookup table
Example of #N/A Error
Let’s use the VLOOKUP function as an example to understand how you might end up with a #N/A error after using Excel functions like LOOKUP, HLOOKUP, or MATCH since they share a similar syntax structure.
For instance, say you have a long list of employees and their bonuses listed in an Excel workbook.
You use the VLOOKUP formula, enter a relevant [lookup_value] for which you insert a cell reference (cell D4), define the [table_array] (A2:B7), and define [col_index_num] (2).
For the final argument called the [range_lookup], you should use 1 (or TRUE) to instruct Excel to obtain an exact match. Setting it to 2 (or FALSE) will instruct Excel to look for an approximate match, which can give you an incorrect output.
Suppose you’ve set up a formula for obtaining bonuses for a select few employees, but you misspell the lookup value. You’ll end up with a #N/A error because Excel won’t be able to find an exact match for the value in the lookup table.
So, what must you do to fix this error?
How to Fix #N/A Error
There are several ways for troubleshooting the #N/A error, but the fixes can primarily be categorized into two approaches:
- Correcting the inputs
- Trapping the error
Correcting the inputs
Ideally, you should identify the cause of the error using the reasons listed previously in this tutorial. Fixing the cause will ensure that you’re not just getting rid of the error but also getting the correct output.
You should start by using the reasons listed in this guide as a checklist. Doing this will help you find the incorrect input that you need to fix to eliminate the error. For example, it could be a misspelled value, an extra space character, or values with an incorrect data type in the lookup table.
Trapping the error
Alternatively, if you want to just eliminate errors from your worksheet without bothering with individually checking for mistakes, you can use several Excel formulas. Some functions have been created specifically to trap errors, while others can help you construct a logical syntax using multiple functions to eliminate errors.
You can trap the #N/A error using one of the following functions:
- IFERROR Function
- IFNA Function
- A Combination of ISERROR Function and IF Function
- TRIM Function
1. IFERROR Function
The IFERROR function was created with the sole purpose of changing the output for a cell that returns an error.
Using the IFERROR function allows you to enter a specific value that you want a cell to show instead of an error. For instance, if you have a #N/A error in cell E2 when using VLOOKUP, you can nest the entire formula into an IFERROR function, like so:
IFERROR(VLOOKUP(E4,B2:C7,2,1),“Employee not found”
If the VLOOKUP function results in an error, it will automatically display the text string “Employees not found” instead of the error.
You can also use an empty string by simply inserting two quotation marks (“”) if you want to display a blank cell when the formula returns an error.
Note that the IFERROR function works for all errors. So, for instance, if the formula you’ve nested inside the IFERROR function returns a #DIV error, IFERROR will still trap the error and return the value in the last argument.
2. IFNA Function
The IFNA function is a more specific version of the IFERROR function but works exactly the same way. The only difference between the two functions is that the IFERROR function traps all errors, while the IFNA function only traps #N/A errors.
For instance, the following formula will work if you have a VLOOKUP #N/A error, but not for a #VALUE error:
IFNA(VLOOKUP(E4,B2:C7,2,1),“Employee not found”
3. A Combination of the ISERROR Function and the IF Function
Another way to trap an error is to use the ISERROR function along with the IF function. It essentially works like the IFERROR function, in that it relies on the ISERROR function to detect an error, and the IF function to render output based on a logical test.
The combination works with all errors like the IFERROR function, not just the #N/A function. Here’s an example of what the syntax will look like when trapping an Excel VLOOKUP #N/A error with the IF and ISERROR functions:
=IF(ISERROR(VLOOKUP(E4,B2:C7,2,1)),VLOOKUP(E4,B2:C8,2,1),”Employee not found”)
4. TRIM Function
We discussed earlier that a space character inserted inadvertently in the lookup value can result in a #N/A error. However, if you have a long list of lookup values already populated into your worksheet, you can use the TRIM function instead of removing the space character from each lookup value individually.
First, create another column to trim leading and trailing spaces in the names using the TRIM function:
Then, use the new column of names as the lookup values in the VLOOKUP function.
Fix #N/A Error in Macros
There’s no specific formula or shortcut you can use to fix #N/A errors in a macro. Since you likely added several functions into your macro when you created it, you’ll need to check the arguments used for each function and verify if they’re correct to fix an #N/A error in a maco.
#N/A Errors Fixed
Fixing #N/A errors isn’t that difficult once you understand what causes them. If you’re not too concerned about the output and just don’t want a formula to result in an error, you can use functions like IFERROR and IFNA to easily tackle the #N/A error.