Question about * in array formula

CasperA

Board Regular
Joined
Jun 8, 2015
Messages
55
Can anyone explain why there is an asterisk (multiplication) in the following array formula that sums all the values in Column A when the value on the same row in Column B is 150 and the value in Column C is the letter U. What is being multiplied and why?

Thank you in advance,
CA

array1_001.png


=SUM((A1:A5)*(B1:B5=150)*(C1:C5="U"))
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Thanks! So I understand that here it would be:

A1*1*1=A1=8
A2*0*0=0
A3*0*0=0
A4*1*1=A4=7
A5*0*0=0

Sum = 15
 
Upvote 0
Correct, effectively True=1, False=0

Depending on your version of Excel, sumifs can do the same but is none array.

=SUMIFS(A1:A5,B1:B5,150,C1:C5,"U")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,203,044
Messages
6,053,186
Members
444,643
Latest member
Shipwreck818

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