IFERROR with V-Lookup and ISBLANK

APerfectCircle

New Member
Joined
Jul 14, 2018
Messages
3
Hello!

I have an IFERROR, which returns a value from a V-lookup, and iferror, it returns the text "Active". However, some of the fields from the V-lookup are blank and it returns 1/9/1900. Which function can I add so that these cells also the text "Active"? I currently have IFERROR(VLOOKUP,"ACTIVE"). I have tried adding ISBLANK, but I'm not sure if this is what I need.

Thanks in advance
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
I have an IFERROR, which returns a value from a V-lookup, and iferror, it returns the text "Active". However, some of the fields from the V-lookup are blank and it returns 1/9/1900. Which function can I add so that these cells also the text "Active"? I currently have IFERROR(VLOOKUP,"ACTIVE"). I have tried adding ISBLANK, but I'm not sure if this is what I need.
Try a structure like this
=IFERROR(IF(VLOOKUP="","ACTIVE",VLOOKUP),"ACTIVE")
 
Upvote 0
Hello!

I have an IFERROR, which returns a value from a V-lookup, and iferror, it returns the text "Active". However, some of the fields from the V-lookup are blank and it returns 1/9/1900. Which function can I add so that these cells also the text "Active"? I currently have IFERROR(VLOOKUP,"ACTIVE"). I have tried adding ISBLANK, but I'm not sure if this is what I need.

Thanks in advance

Like this:

=T(IFERROR(VLOOKUP(…),"ACTIVE"))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

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