Bec --Try |
pdberge posted on Wednesday, April 23, 2008 12:44 AM
|
Bec --
Try this:
=SUMPRODUCT(--(A1:A100="SYD"),--(B1:B100="PC"),--(C1:C100="NOTEBOOK IN-USE"))
Set the range to the right number of rows.
HTH |
 |
|
Assuming you have 4 columns of data |
T. Valko posted on Wednesday, April 23, 2008 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 |
 |
|