Microsoft Excel 365 column totals












0














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









share|improve this question





























    0














    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









    share|improve this question



























      0












      0








      0







      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









      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 7 at 21:42









      Scott Craner

      11.2k1815




      11.2k1815










      asked Dec 7 at 21:31









      M. JBE

      1




      1






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Use SUMPRODUCT():



          =SUMPRODUCT(A2:A9,B2:B9)


          enter image description here






          share|improve this answer





























            0














            You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.



            enter image description here



            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 A12finish with Ctrl+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.






            share|improve this answer





















              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
              });


              }
              });














              draft saved

              draft discarded


















              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









              0














              Use SUMPRODUCT():



              =SUMPRODUCT(A2:A9,B2:B9)


              enter image description here






              share|improve this answer


























                0














                Use SUMPRODUCT():



                =SUMPRODUCT(A2:A9,B2:B9)


                enter image description here






                share|improve this answer
























                  0












                  0








                  0






                  Use SUMPRODUCT():



                  =SUMPRODUCT(A2:A9,B2:B9)


                  enter image description here






                  share|improve this answer












                  Use SUMPRODUCT():



                  =SUMPRODUCT(A2:A9,B2:B9)


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 7 at 21:50









                  Scott Craner

                  11.2k1815




                  11.2k1815

























                      0














                      You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.



                      enter image description here



                      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 A12finish with Ctrl+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.






                      share|improve this answer


























                        0














                        You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.



                        enter image description here



                        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 A12finish with Ctrl+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.






                        share|improve this answer
























                          0












                          0








                          0






                          You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.



                          enter image description here



                          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 A12finish with Ctrl+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.






                          share|improve this answer












                          You can use following Formula to get total number of parts required to be quoted, whenever you add Price to an item.



                          enter image description here



                          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 A12finish with Ctrl+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.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Dec 8 at 7:12









                          Rajesh S

                          3,7041522




                          3,7041522






























                              draft saved

                              draft discarded




















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              Plaza Victoria

                              In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                              How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...