Vlookup to return specific Text value

lbanham

Board Regular
Joined
Feb 17, 2011
Messages
50
Hi

I am using a Vlookup to check for a value between spreadsheets. This works fine and if found, returns the value and if not is shows as #NA.

I need to include a formula thats says, if the value is found "Reconciled" and if not "Not Reconciled".

I was using "ISERROR" to return a "0" instead of #NA but I still am unable to get it returning my "Reconciled" etc.

This is what i have so far.

=IF(ISERROR(VLOOKUP(C2,'Module Download'!C:J,7,FALSE)),0,(VLOOKUP(C2,'Module Download'!C:J,7,FALSE)))

Any help appreciated!

Thanks :)
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Thanks for that. I am looking for it as one whole forumula (i.e. all in one cell), is that possible?

:)
 
Upvote 0
=IF(ISERROR(VLOOKUP(C2,'Module Download'!C:J,7,FALSE)),0,(VLOOKUP(C2,'Module Download'!C:J,7,FALSE)))

=IF(ISNA(VLOOKUP(C2,'Module Download'!C:J,7,FALSE)),"Not reconciled","Reconciled")
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

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