indirect-formula error

kashyap

Board Regular
Joined
Mar 28, 2009
Messages
173
[FONT=Verdana, Arial, Helvetica]Hi,
=SUMPRODUCT((Hiren!B4:B1000=B10)*(Hiren!C4:C1000=C10)*(Hiren!I4:I1000=L1)*Hiren!G4:G1000)

I'm trying above formula with indirect as below but I'm not getting result
from below formula..

Where am I going wrong?
=SUMPRODUCT((INDIRECT("'"&H10&"'!B4:B1000"=B10))*(INDIRECT("'"&H10&"'!C4:C1000"=C10))*(INDIRECT("'"&H10&"'!I4:I1000"=$L$1))*(INDIRECT("'"&H10&"'!G4:G1000")))
[/FONT]
 
The parentheses are slightly awry

=SUMPRODUCT(INDIRECT("'"&H10&"'!B4:B1000")=B10)*....)

The INDIRECT is used to create the range only.

Note: it is also Volatile.
 
Upvote 0
Instead of this:
INDIRECT("'"&H10&"'!B4:B1000"=B10)

use this format:
INDIRECT("'"&H10&"'!B4:B1000")=B10
 
Upvote 0

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