Why Isn't This Formula Working?

thewiseguy

Well-known Member
Joined
May 23, 2005
Messages
1,019
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone,

Not sure why this formula is a returning an "n/a" value? I have the same formula in a cell to the left and I copied everything over, however it is still not returning the needed values. Can anyone point to what may be wrong?

Thank you in advance!

-m


=IF(N5="","",IF(ISERROR(VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)),0,
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
We can't see the whole formula... it got cutoff after the 0

Put spaces around any < or > symbols, the board software sometimes thinks they are HTML code tags..
 
Upvote 0
yes that is the entire formula. it works in 1 section of my worksheet but not when i copy it over.
 
Upvote 0
That can't be the entire formula...It's incomplete.

You posted
=IF(N5="","",IF(ISERROR(VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)),0,
Or at least that's all we can see.....

It tells what to do if the vlookup is an error (return a 0), but there is nothing after that. It's incomplete..
It needs to continue on and state what to do if the vlookup is NOT an error..presumably complete the vlookup.

I assume it should be
=IF(N5="","",IF(ISERROR(VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)),0,VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)))
 
Upvote 0
Hi M,

If you are looking for a simple test of your Vlookup is true this could be the formula you are looking for.

=IF(N5="","",IF(ISERROR(VLOOKUP(N5,Proposed!$A$5:$I$65536,7,FALSE)),0,"It's working"))

Regards,

Stuart.
 
Upvote 0
That can't be the entire formula...It's incomplete.

You posted
=IF(N5="","",IF(ISERROR(VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)),0,
Or at least that's all we can see.....

It tells what to do if the vlookup is an error (return a 0), but there is nothing after that. It's incomplete..
It needs to continue on and state what to do if the vlookup is NOT an error..presumably complete the vlookup.

I assume it should be
=IF(N5="","",IF(ISERROR(VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)),0,VLOOKUP(N5,PROPOSED!$A$5:$I$65536,7,FALSE)))


haha thank you! not sure why but because i didnt drop open the entire formula bar, it only copied part of the formula.

thank you again for your help!
 
Upvote 0

Forum statistics

Threads
1,224,557
Messages
6,179,507
Members
452,917
Latest member
MrsMSalt

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