Hi!
What type of data is in column D, text or numeric?
Will there be only 1 instance of 22 in column A and only 1 instance of 302
in column B?
Try one of these:
If column D is numeric:
Normally entered:
=SUMPRODUCT(--(A1:A65535=22),--(B1"B65535=302),C1:C65535)
If column D is text:
Array entered using the key combination of CTRL,SHIFT,ENTER:
=INDEX(D:D,MATCH(1,(A1:A65535=22)*(B1:B65535=302),0))
Adjust the range size if you don't use anywhere near the entire column. No
sense in referencing down to row 65535 if you only use 100 rows at most.
Biff
>I am trying to setup a spreadsheet that will display information stored on
>a
[quoted text clipped - 9 lines]
>
> Any ideas?
Sharky23 - 21 May 2006 20:09 GMT
Thanks, all I have to do now is tweak this to access the excel sheet on the
network drive. Your assistance in this was very appreciated. I have already
tried it out a little and it works perfectly using either of the two formulas.
> Hi!
>
[quoted text clipped - 35 lines]
> >
> > Any ideas?
Biff - 21 May 2006 21:19 GMT
You're welcome. Thanks for the feedback!
Biff
> Thanks, all I have to do now is tweak this to access the excel sheet on
> the
[quoted text clipped - 45 lines]
>> >
>> > Any ideas?