Sumproduct Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

Currently I have the following string setup:

=SUMPRODUCT(--('Awaiting Further Info'!B2:B294="NU"),--('Awaiting Further
Info'!F2:F294="D"),'Awaiting Further Info'!I2:I294)

I now also need this to check Column A for all instances of serial "1" but I
cannot get the syntax right so grateful for your help.

Column 'B' is Company, Column 'D' is Circuit Type and Column 'I' is cost of
circuit per annum

Thanks, Andy
 
Nel post *AndyO_UK* ha scritto:
Hi

Currently I have the following string setup:

=SUMPRODUCT(--('Awaiting Further Info'!B2:B294="NU"),--('Awaiting
Further Info'!F2:F294="D"),'Awaiting Further Info'!I2:I294)

I now also need this to check Column A for all instances of serial
"1" but I cannot get the syntax right so grateful for your help.

Column 'B' is Company, Column 'D' is Circuit Type and Column 'I' is
cost of circuit per annum

Thanks, Andy

Hi Andy,

I'm not sure to have well understood...

Try this one:

=SUMPRODUCT(('Awaiting Further Info'!A2:A294=1)*('Awaiting Further
Info'!B2:B294="NU")*('Awaiting Further Info'!F2:F294="D"),'Awaiting Further
Info'!I2:I294)


--
(I'm not sure of names of menus, options and commands, because
translating from the Italian version of Excel...)

Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 
Is it not just

=SUMPRODUCT(--('Awaiting Further Info'!A2:A294="1"),--('Awaiting Further
Info'!B2:B294="NU"),
--('Awaiting Further Info'!F2:F294="D"),'Awaiting Further Info'!I2:I294)


--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
 
Nel post *Bob Phillips* ha scritto:
Is it not just

=SUMPRODUCT(--('Awaiting Further Info'!A2:A294="1"),--('Awaiting
Further Info'!B2:B294="NU"),
--('Awaiting Further Info'!F2:F294="D"),'Awaiting Further
Info'!I2:I294)

Hi Bob,

that should work if the serials numbers in column A are entered as text, but
if they are formatted as numbers, I'm quite sure that it shouldn't work...


--
(I'm not sure of names of menus, options and commands, because
translating from the Italian version of Excel...)

Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 
The OP said serial "1" which is why I did it that way.

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)
 

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

Back
Top