Value! Error with Multi Conditions in Excel

rdaytonmoore

New Member
Joined
Aug 16, 2011
Messages
2
I'm working with a large amount of data, from a call log, and need to sum the duration (time) of the call (D:D) when C:C = "Queue 1" and H:H = "Rep 1". Both column C and Column H are text. There are two tabs (data, report)

I have tired several different equations

=sum((data!C:C=Report!a4)*(data!h:h=report!c6)*data!D:D)

Instead of enter I push Shift Ctrl enter, this gives me a Value! Error. Should I use another equation? Or is there a way to get Excel to not return the Value! Error.

thank you!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Try

=sumproduct(--(data!C1:C100=Report!a4),--(data!h1:h100=report!c6),data!D1:D100)

This doesn't require CTRL + Shift + Enter but you can't use whole column references like D:D
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,283
Members
452,902
Latest member
Knuddeluff

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top