VLOOKUP formula with "#VALUE"

G

Guest

I have this formula below in E8:
=IF(ISNA(VLOOKUP(B8,INDIRECT(VLOOKUP(A8,
$Q$1:$R$9,2)),2,TRUE)),"",VLOOKUP(B8,INDIRECT(VLOOKUP(A8,
$Q$1:$R$9,2)),2,TRUE))*D8

The formula works fine until it is copied down where there is no data entry
yet in columns A, B & D.
The formula looks up a table of weights, and when it find the unit weight it
multilies by the quantity shown in column D.

How can the above formula be modified to show a blank cell in column E when
Columns A, B & D don't have data in them yet?

Thank you in advance.
Serge
 
G

Guest

Try:

=IF(OR(A8="",B8="",D8=""),"",IF(ISNA(VLOOKUP(B8,INDIRECT(VLOOKUP(A8,$Q$1:$R$9,2)),2,TRUE)),"",VLOOKUP(B8,INDIRECT(VLOOKUP(A8,$Q$1:$R$9,2)),2,TRUE))*D8)

HTH
 
G

Guest

Hello Toppers,
I cannot take the credit for this one. I had help in a previous posting.
But I guess this is how we all learn, by posting & acknowleging user group.
Serge
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

VLOOKUP with TABLES 8
#VALUE problem 4
A different kind of VLookup 8
VLOOKUP fORMULA 4
vlookup 14
Quatro to Excel formula 6
VLOOKUP Difficulty 5
Vlookup with Multiple Columns to Match 2

Top