Hi,
in cell G4 write:
=SUMPRODUCT(($B$4:$B$15=$F4)*$C$4:$C$15)
and copy down up to G10
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm working on a sheet which tracks an itemized marketing budget spend across multiple brands.
In one column I have a drop down list by brand. In the column next to it is a value of how much was spent in a given time for that specific brand.
In the example below, in column G I want a formula which adds the amount spent in column C per each brand in Column B.
Help please!
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Hi,
in cell G4 write:
=SUMPRODUCT(($B$4:$B$15=$F4)*$C$4:$C$15)
and copy down up to G10
Hi,
One simple way would be to build a Pivot Table. Just drag Brand to the Row labels and Cost to the value area section.
If you prefer a formula, then enter this formula in cell G4 and copy down
=SUMIF($B$4:$B$15,F4,$C$4:$C$15)
Hope this helps.