Multiply & Sum Columns

radley1

New Member
Joined
Feb 17, 2023
Messages
8
Office Version
  1. 365
Platform
  1. Windows
Hi All
I need to be able to create a formula to find out the number of units that are ordered on each day of the week.
When a customer inputs a number into the day of the week column (MONDAY/TUESDAY) they are inputting the number of cases they want to order. I need this to then multiply by the units per case to let me know how many units are being ordered on each day.
I then need to be able to sum the total across the rows for each column. So in below example, I need to be able to find out that in Monday there are 360 units in total & Tuesday 540 units.

Units Per CaseMONDAYTUESDAY
901
902
902
90
902
90
70
45
452
45
452
45
452
35
TOTAL360540
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Maybe:
Book1
ABC
1Units Per CaseMONDAYTUESDAY
2901
3902
4902
590
6902
790
870
9
1045
11452
1245
13452
1445
15452
1635
17TOTAL360540
Sheet1
Cell Formulas
RangeFormula
B17:C17B17=BYCOL(B2:C16,LAMBDA(x,SUM(x*A2:A16)))
Dynamic array formulas.
 
Upvote 0
Another option
Fluff.xlsm
ABC
1Units Per CaseMONDAYTUESDAY
2901
3902
4902
590
6902
790
870
9
1045
11452
1245
13452
1445
15452
1635
17TOTAL360540
Master
Cell Formulas
RangeFormula
B17:C17B17=SUMPRODUCT($A$2:$A$16,B2:B16)
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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