Link to home
Start Free TrialLog in
Avatar of route217
route217Flag for United Kingdom of Great Britain and Northern Ireland

asked on

Vlookup up to find only empty cell in a column

Hi experts excel 2010

How would you write a formula so if in column A cell 2 you have a data value and cell A3 is empty then in A3 then lookup applies but ignore all cells in column a where you already have a value..

So
Col A.          Col B.
Wcd.            Lookup return nothing
                     Here blank look finds value from look up table
Adds.           lookup returns nothing

Etc...
Avatar of route217
route217
Flag of United Kingdom of Great Britain and Northern Ireland image

ASKER

The formula has to apply to both text data and numerical data...
Avatar of Glenn Ray
The formula would be something along this line (inserted in B2 and copied down):
=IF(A2<>"","",VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]))

We may need to see a more-detailed example if this isn't helpful.

Regards,
-Glenn
Thanks Glenn excellent feedback.

If I amend formul to =if (isna (A2 <>"","", vlookup etc...would this work also..
ASKER CERTIFIED SOLUTION
Avatar of Glenn Ray
Glenn Ray
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial