copy paste value

T

Tomwireless

I have a colum of vlookup numeric data and want to add it up, but each cell
may not return a value depending on how many items are needed. I belive I
will need to add a colum in and grab the numeric data that is returned and
then use a formula to do a copy paste value and if no value equal zero. I am
not sure how to do this thoe. here is the vlookup formula i am using.
Can you please help

=IF(ISNA(VLOOKUP(A3,'Inventory Items'!$A$3:$C$888,'Inventory
Items'!$C$1,FALSE)),"",(VLOOKUP(A3,'Inventory Items'!$A$3:$C$888,'Inventory
Items'!$C$1,FALSE)))

Thank you
 
D

Duke Carey

Tom - at a guess, what you are trying to do is use a formula along the lines of

=A2+A3+A4+A5

and that generates an error when one of those cells has a formula where the
value is "" from =IF(ISNA(...),"",...)

The way around that is to use the SUM() function on your column. It will
not throw an error if one or more values is ""
 

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

Top