Skip to main content
All CollectionsGoogle Sheets & Excel Formulas
How To Remove #N/A in Google Sheets & Excel
How To Remove #N/A in Google Sheets & Excel
Lasse Kalkar avatar
Written by Lasse Kalkar
Updated over a week ago

Here's a simple guide on removing #N/A errors in Google Sheets and Excel.

  1. Open your formula

  2. Add the IFNA function to the beginning of the formula

  3. Add relevant parenthesis

  4. Done!

Here is a quick example of a sample formula of an Index/Match without IFNA and with IFNA

  • Without IFNA:

=INDEX(A1:A3,MATCH(B1,C1:C3,0))
  • With IFNA:

=IFNA(INDEX(A1:A3,MATCH(B1,C1:C3,0)))
Did this answer your question?