Sum Help IFERROR & VLOOKUP

bloodmilksky

Board Regular
Joined
Feb 3, 2016
Messages
202
Hi Guys, I hope you are all well.

I was just wondering if anyone could help me on the below please

=IF(ISERROR(F2)=TRUE,"N/A",VLOOKUP('Hidden Sheet'!H2,'Hidden Sheet'!I2:J176,))) It keeps on erroring under #VALUE but I am sure I have covered my bases.

any help would be great

jamie
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
your vlookup is incomplete, the target column index is missing.

may be
=IF(ISERROR(F2)=TRUE,"N/A",VLOOKUP('Hidden Sheet'!H2,'Hidden Sheet'!I2:J176,2,0))
 
Upvote 0
Maybe this

=IFERROR(VLOOKUP('Hidden Sheet'!H2,'Hidden Sheet'!I2:J176,2,0),"N/A")
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,453
Members
448,967
Latest member
grijken

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