Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excell formula puzzle 1

Status
Not open for further replies.

Shadow1Raider

IS-IT--Management
Nov 3, 2008
3
ZA
Hi
I'm try ing to create a formula tha will return multiple instances of a single unit and add up the quantities, i have seperate sheets 1 for the schedual for architects to set out the ironmongery needed for the project room by room(all iron mungery needed to outfit the room) and the other for the bill of quantity.
this is what i have got so far it returns only the first instance not the others
Code:
=if(a11="","",vlookup(a11,ironmongery!A:E,2,false))
any idea how I can tweak my formula to work will be greatly apreciated
thanks
 
Look at the SUMIF function.

Cheers, Glenn.

Beauty is in the eye of the beerholder.
 
Hi GlenUK
thanks tried it keeps giving me that the forula has an error
thanks
 
Code:
=if(a11="","",SUMIF(ironmongery!A:A,a11,ironmongery!B:B))
... is what your formula should look like.

Cheers, Glenn.

Beauty is in the eye of the beerholder.
 
Hi GlennUK
thanks after resetting data works like a bomb thanks a million
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top