Asked By T. Valko
23-Apr-08 12:45 AM
Assuming you have 4 columns of data there:
=SUMPRODUCT(--(A1:A6="syd"),--(B1:B6="PC"),--(C1:C6="notebook"),--(D1:D6="in-use"))
Better if you use cells to hold the criteria:
J1 = syd
K1 = PC
L1 = notebook
M1 = in-use
=SUMPRODUCT(--(A1:A6=J1),--(B1:B6=K1),--(C1:C6=L1),--(D1:D6=M1))
--
Biff
Microsoft Excel MVP