Formula not working in excel 2007

  • Thread starter Rao Ratan Singh
  • Start date
R

Rao Ratan Singh

Sir,

Namaskar! I i just installed office 2007 and some formula is not working and
retruning #N/A and some formula is returning 0 value.

This formula is returing #N/A

=IF(ISBLANK($C1063),"",IF(VLOOKUP($C1063,Inventory_List,9,0)<0,"INVALID
SALE",VLOOKUP($C1063,Inventory_List,9,0)))



and this is returning 0 vlaue

=IF($C1067="","",IF(ISERROR(VLOOKUP($C1067,Inventory_List,4,FALSE)),0,VLOOKUP($C1067,Inventory_List,4,FALSE)))



what should i change in excel 2007 or should i unstall office 2007



Hope you will soon solve my problem.
 
D

Dave F

For your first formula, this portion seems suspect:
IF(VLOOKUP($C1063,Inventory_List,9,0) You are telling Excel to look 0
columns to the right. I think that number has to be at least 1.

For your second formula, take a look at the new IFERROR function in
Excel 2007; it will simplify your formula.

Dave
 
D

Dave Peterson

The 9 represents the column in Inventory_list to be returned.

0 (or False) in that 4th parm means that there has to be an exact match between
what's in C1063 and the first column of Inventory_List.
 

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