Thread: formula issue
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default formula issue

First, you don't need =sum()

=f18*b18+g18
would work ok. But I'd use ()'s:
=(f18*b18)+g18

You could change the =vlookup() to return a 0 instead of text ("" is text).
=IF(ISNA(VLOOKUP(C18,Table1,3,FALSE)),0,VLOOKUP(C1 8,Table1,3,FALSE))

Or you could change the formula:
=(n(f18)*b18)+g18




chrisbmo2000 wrote:

I get #value! after using vlookup.......Im trying to multiply the price per
unit by the quantity and then add the shipping the formula is
=sum(F18*B18+G18) F18 gets its info from the vlookup formula which is
=IF(ISNA(VLOOKUP(C18,Table1,3,FALSE)),"",VLOOKUP(C 18,Table1,3,FALSE)) any
ideas?


--

Dave Peterson