Microsoft Excel 365 column totals
Creating a spreadsheet to track quotes.
I have multiple columns of information.
One has the item name, Next is the quantity required for that item, next column has the price of each part.
Each time that I add a price to an item, I want the spreadsheet to total the number of parts (items x quantity) required to quote.
So if there are 30 rows of items, the quantity of each can range from 1 to 5.
There is a total at the bottom for the quantity of items to quote. I want it to update each time a price is put into the price column and multiply the individual quantity that corresponds to that price and giving a total at the bottom.
"Required Spare Qty" "New Quoted Price for Each
1 $13,815
2 0
1 $17,338
2 0
1 $2,533
2 0
2 0
1 0
microsoft-excel
add a comment |
Creating a spreadsheet to track quotes.
I have multiple columns of information.
One has the item name, Next is the quantity required for that item, next column has the price of each part.
Each time that I add a price to an item, I want the spreadsheet to total the number of parts (items x quantity) required to quote.
So if there are 30 rows of items, the quantity of each can range from 1 to 5.
There is a total at the bottom for the quantity of items to quote. I want it to update each time a price is put into the price column and multiply the individual quantity that corresponds to that price and giving a total at the bottom.
"Required Spare Qty" "New Quoted Price for Each
1 $13,815
2 0
1 $17,338
2 0
1 $2,533
2 0
2 0
1 0
microsoft-excel
add a comment |
Creating a spreadsheet to track quotes.
I have multiple columns of information.
One has the item name, Next is the quantity required for that item, next column has the price of each part.
Each time that I add a price to an item, I want the spreadsheet to total the number of parts (items x quantity) required to quote.
So if there are 30 rows of items, the quantity of each can range from 1 to 5.
There is a total at the bottom for the quantity of items to quote. I want it to update each time a price is put into the price column and multiply the individual quantity that corresponds to that price and giving a total at the bottom.
"Required Spare Qty" "New Quoted Price for Each
1 $13,815
2 0
1 $17,338
2 0
1 $2,533
2 0
2 0
1 0
microsoft-excel
Creating a spreadsheet to track quotes.
I have multiple columns of information.
One has the item name, Next is the quantity required for that item, next column has the price of each part.
Each time that I add a price to an item, I want the spreadsheet to total the number of parts (items x quantity) required to quote.
So if there are 30 rows of items, the quantity of each can range from 1 to 5.
There is a total at the bottom for the quantity of items to quote. I want it to update each time a price is put into the price column and multiply the individual quantity that corresponds to that price and giving a total at the bottom.
"Required Spare Qty" "New Quoted Price for Each
1 $13,815
2 0
1 $17,338
2 0
1 $2,533
2 0
2 0
1 0
microsoft-excel
microsoft-excel
edited Dec 7 '18 at 21:42
Scott Craner
11.2k1815
11.2k1815
asked Dec 7 '18 at 21:31
M. JBE
1
1
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Use SUMPRODUCT():
=SUMPRODUCT(A2:A9,B2:B9)
add a comment |
You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.
How it works:
I'm assuming that you have Data in Range A2:C8
.
To get Unique part's name write the Array formula in Cell
A12
finish withCtrl+Shift+enter
& fill down as many rows you feel (Keep some extra rows to get New Part's Name).
{=IFERROR(INDEX($A$3:$A$8, MATCH(0, IF($C$3:$C$8>0, COUNTIF($A$11:$A11, $A$3:$A$8), ""), 0)),"")}
To get Total numbers of Part's write this Formula in Cell
B12
and fill down (Keep some extra rows to get new total).
=IF(SUMIF(A3:A8,A12,B3:B8)=0,"",SUMIF(A3:A8,A12,B3:B8))
Additionally, you can use following Formula to get Price total of the parts need to be quoted in cell
C12
& fill it down (also keep some extra rows).
=IF(SUMIF(A3:A8,A12,C3:C8)=0,"",SUMIF(A3:A8,A12,C3:C8))
Note:
Situation 1 shows summary of two parts Fan & Glass for which price has been entered, and Situation 2 show 3 items since has new entry Disc's Price.- Adjust cell references in the Formula as needed.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1381766%2fmicrosoft-excel-365-column-totals%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use SUMPRODUCT():
=SUMPRODUCT(A2:A9,B2:B9)
add a comment |
Use SUMPRODUCT():
=SUMPRODUCT(A2:A9,B2:B9)
add a comment |
Use SUMPRODUCT():
=SUMPRODUCT(A2:A9,B2:B9)
Use SUMPRODUCT():
=SUMPRODUCT(A2:A9,B2:B9)
answered Dec 7 '18 at 21:50
Scott Craner
11.2k1815
11.2k1815
add a comment |
add a comment |
You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.
How it works:
I'm assuming that you have Data in Range A2:C8
.
To get Unique part's name write the Array formula in Cell
A12
finish withCtrl+Shift+enter
& fill down as many rows you feel (Keep some extra rows to get New Part's Name).
{=IFERROR(INDEX($A$3:$A$8, MATCH(0, IF($C$3:$C$8>0, COUNTIF($A$11:$A11, $A$3:$A$8), ""), 0)),"")}
To get Total numbers of Part's write this Formula in Cell
B12
and fill down (Keep some extra rows to get new total).
=IF(SUMIF(A3:A8,A12,B3:B8)=0,"",SUMIF(A3:A8,A12,B3:B8))
Additionally, you can use following Formula to get Price total of the parts need to be quoted in cell
C12
& fill it down (also keep some extra rows).
=IF(SUMIF(A3:A8,A12,C3:C8)=0,"",SUMIF(A3:A8,A12,C3:C8))
Note:
Situation 1 shows summary of two parts Fan & Glass for which price has been entered, and Situation 2 show 3 items since has new entry Disc's Price.- Adjust cell references in the Formula as needed.
add a comment |
You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.
How it works:
I'm assuming that you have Data in Range A2:C8
.
To get Unique part's name write the Array formula in Cell
A12
finish withCtrl+Shift+enter
& fill down as many rows you feel (Keep some extra rows to get New Part's Name).
{=IFERROR(INDEX($A$3:$A$8, MATCH(0, IF($C$3:$C$8>0, COUNTIF($A$11:$A11, $A$3:$A$8), ""), 0)),"")}
To get Total numbers of Part's write this Formula in Cell
B12
and fill down (Keep some extra rows to get new total).
=IF(SUMIF(A3:A8,A12,B3:B8)=0,"",SUMIF(A3:A8,A12,B3:B8))
Additionally, you can use following Formula to get Price total of the parts need to be quoted in cell
C12
& fill it down (also keep some extra rows).
=IF(SUMIF(A3:A8,A12,C3:C8)=0,"",SUMIF(A3:A8,A12,C3:C8))
Note:
Situation 1 shows summary of two parts Fan & Glass for which price has been entered, and Situation 2 show 3 items since has new entry Disc's Price.- Adjust cell references in the Formula as needed.
add a comment |
You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.
How it works:
I'm assuming that you have Data in Range A2:C8
.
To get Unique part's name write the Array formula in Cell
A12
finish withCtrl+Shift+enter
& fill down as many rows you feel (Keep some extra rows to get New Part's Name).
{=IFERROR(INDEX($A$3:$A$8, MATCH(0, IF($C$3:$C$8>0, COUNTIF($A$11:$A11, $A$3:$A$8), ""), 0)),"")}
To get Total numbers of Part's write this Formula in Cell
B12
and fill down (Keep some extra rows to get new total).
=IF(SUMIF(A3:A8,A12,B3:B8)=0,"",SUMIF(A3:A8,A12,B3:B8))
Additionally, you can use following Formula to get Price total of the parts need to be quoted in cell
C12
& fill it down (also keep some extra rows).
=IF(SUMIF(A3:A8,A12,C3:C8)=0,"",SUMIF(A3:A8,A12,C3:C8))
Note:
Situation 1 shows summary of two parts Fan & Glass for which price has been entered, and Situation 2 show 3 items since has new entry Disc's Price.- Adjust cell references in the Formula as needed.
You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.
How it works:
I'm assuming that you have Data in Range A2:C8
.
To get Unique part's name write the Array formula in Cell
A12
finish withCtrl+Shift+enter
& fill down as many rows you feel (Keep some extra rows to get New Part's Name).
{=IFERROR(INDEX($A$3:$A$8, MATCH(0, IF($C$3:$C$8>0, COUNTIF($A$11:$A11, $A$3:$A$8), ""), 0)),"")}
To get Total numbers of Part's write this Formula in Cell
B12
and fill down (Keep some extra rows to get new total).
=IF(SUMIF(A3:A8,A12,B3:B8)=0,"",SUMIF(A3:A8,A12,B3:B8))
Additionally, you can use following Formula to get Price total of the parts need to be quoted in cell
C12
& fill it down (also keep some extra rows).
=IF(SUMIF(A3:A8,A12,C3:C8)=0,"",SUMIF(A3:A8,A12,C3:C8))
Note:
Situation 1 shows summary of two parts Fan & Glass for which price has been entered, and Situation 2 show 3 items since has new entry Disc's Price.- Adjust cell references in the Formula as needed.
answered Dec 8 '18 at 7:12
Rajesh S
3,7001522
3,7001522
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1381766%2fmicrosoft-excel-365-column-totals%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown