if function

adriana25

New Member
Joined
Aug 5, 2011
Messages
13
Hi! can someone help me? I have the cells
A1 Thiery A2 thiery
B1 blouse B2 blouse
C1 Black C2 red
D1 25 D2 30 etc

in a cell i have to do this formula: Sum the numbers of D1:D300 only If in the cells A1:A300 you will find "thiery", and B1:B300 you will find "blouse" and in the cells C1:C300 you will find "black"

Is that possible? :confused:

thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
If you have 2007

=SUMIFS($D$1:$D$300,$A$1:$A$300,"thiery",$B$1:$B$300,"blouse",$C$1:$C$300,"black")

Earlier version

=SUMPRODUCT(--($A$1:$A$300="thiery"),--($B$1:$B$300="blouse"),--($C$1:$C$300="black"),$D$1:$D$300)
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,683
Members
452,938
Latest member
babeneker

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