0
votes

Okay so i'm making a pretty basic shopping list for one of my hobby projects, and i wanted to make it look a bit fancier, hence this.

But i can't seem to figure out how to work with merged cells. If you look at this image, this is what i'm trying to do: The first red cell should be multiplied with the first blue cell, the second red cell multiplied with the second blue cell and so on and on. All of that should then be added up and displayed in the green cell.

P.S, please ignore the € signs everywhere! The cells should be treated as regular plain numbers as i'm using file formatting to make those € signs.

2

2 Answers

0
votes

Assuming no numbers elsewhere in ColumnsH:K, try:

=sumproduct(H6:H15,K6:K15)
0
votes

I found the answer actually. Just treat them as normal cells (non-merged) and it works.

=ADD(MULTIPLY(H6;K6);MULTIPLY(H13;K13))

Works perfectly