Value Not Available Error - Excel 2007

Chelrie

New Member
Joined
Jul 14, 2009
Messages
27
=INDEX('STORE LISTING'!E:E,MATCH(A4,'STORE LISTING'!$C:$C,0))

When A has a value in it - this formula displays the correct information. However, when A is empty - it displays #N/A

I've tried

=INDEX('STORE LISTING'!E:E,MATCH(A4,'STORE LISTING'!$C:$C," "))

but that always displays an error.

I would like for the cell to show blank when no value in A column.

Any assistance is appreciated.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
If you add an if statement to display nothing when the cell is empty this should solve your problem.
 
Upvote 0
E.g.,
=IF(ISNA(MATCH(A4,'STORE LISTING'!$C:$C,0)),"",INDEX('STORE LISTING'!E:E,MATCH(A4,'STORE LISTING'!$C:$C,0)))
 
Upvote 0
In Excel 2007 use the new IFERROR function.

=IFERROR(INDEX('STORE LISTING'!E:E,MATCH(A4,'STORE LISTING'!$C:$C,0)),"")
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,861
Members
449,052
Latest member
Fuddy_Duddy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top