LOOKUP Blank Cell

bumfart66

New Member
Joined
Aug 23, 2017
Messages
12
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi , i have this formula that compares two columns, if there is no value in cell A2 it returns a message of "<-- Recorded in Circuit Database, not recorded in PNI, Record in PNI" how can i get this to show as a blank value ?

=IF(ISNA(VLOOKUP(A2,'Compare Circuit DB to PNI'!$C$2:$C$31,1,FALSE)),"<-- Recorded in Circuit Database, not recorded in PNI, Record in PNI","<-- Perfect Match, No Action Required")
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Just replace The message with ""
Excel Formula:
=IF(ISNA(VLOOKUP(A2,'Compare Circuit DB to PNI'!$C$2:$C$31,1,FALSE)),"","<-- Perfect Match, No Action Required")
 
Upvote 0
May be
Excel Formula:
=if(A2="","",IF(ISNA(VLOOKUP(A2,'Compare Circuit DB to PNI'!$C$2:$C$31,1,FALSE)),"<-- Recorded in Circuit Database, not recorded in PNI, Record in PNI","<-- Perfect Match, No Action Required")
 
Upvote 0

Forum statistics

Threads
1,215,375
Messages
6,124,578
Members
449,174
Latest member
chandan4057

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