Replace decimal values with zero decimal value





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















Lets say I have a number 2,65,563.56 in a particular cell. I want excel to automatically change it to 2,65,563.00.
I could simply format the cell to display the integer part of the number only making the decimal part disappear but I want the decimal part to show as .00



Please note, I don't want excel to round off the number as it might alter the integer part of my number. Hence I would like excel to simply replace the non-zero decimal value (.56) with a zero decimal value (.00).



Thank you.










share|improve this question





























    0















    Lets say I have a number 2,65,563.56 in a particular cell. I want excel to automatically change it to 2,65,563.00.
    I could simply format the cell to display the integer part of the number only making the decimal part disappear but I want the decimal part to show as .00



    Please note, I don't want excel to round off the number as it might alter the integer part of my number. Hence I would like excel to simply replace the non-zero decimal value (.56) with a zero decimal value (.00).



    Thank you.










    share|improve this question

























      0












      0








      0








      Lets say I have a number 2,65,563.56 in a particular cell. I want excel to automatically change it to 2,65,563.00.
      I could simply format the cell to display the integer part of the number only making the decimal part disappear but I want the decimal part to show as .00



      Please note, I don't want excel to round off the number as it might alter the integer part of my number. Hence I would like excel to simply replace the non-zero decimal value (.56) with a zero decimal value (.00).



      Thank you.










      share|improve this question














      Lets say I have a number 2,65,563.56 in a particular cell. I want excel to automatically change it to 2,65,563.00.
      I could simply format the cell to display the integer part of the number only making the decimal part disappear but I want the decimal part to show as .00



      Please note, I don't want excel to round off the number as it might alter the integer part of my number. Hence I would like excel to simply replace the non-zero decimal value (.56) with a zero decimal value (.00).



      Thank you.







      microsoft-excel microsoft-excel-2013






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 8 at 11:07









      SomannaSomanna

      32




      32






















          2 Answers
          2






          active

          oldest

          votes


















          2














          I believe FLOOR is the way, and you can specify the significance:



          =FLOOR(value, 1)





          share|improve this answer































            1














            There are several ways to do this. Aside from floor there is also:



            =ROUNDOWN(value,0)

            or

            =INT(value)

            or

            =value-MOD(value,1)

            or

            =LEFT(A2,FIND(".",A2)-1)*1
            =LEFT(A2,FIND(".",A2)-1)/1
            =LEFT(A2,FIND(".",A2)-1)+0
            =--LEFT(A2,FIND(".",A2)-1)
            NOTE: the math operation at the end and the leading -- turns the text back into a number.


            If you do not need the value as a number useable in formulas you could also do:



            =LEFT(A2,FIND(".",A2)-1)&".00"


            enter image description here



            Note: With the exception of the text option, you will have to adjust the format of the cells to display 2 decimal accuracy as under general cell format, leading and trailing zeros do not display. With the text option you may need to adjust cell justification to suit your needs.






            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%2f1403492%2freplace-decimal-values-with-zero-decimal-value%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









              2














              I believe FLOOR is the way, and you can specify the significance:



              =FLOOR(value, 1)





              share|improve this answer




























                2














                I believe FLOOR is the way, and you can specify the significance:



                =FLOOR(value, 1)





                share|improve this answer


























                  2












                  2








                  2







                  I believe FLOOR is the way, and you can specify the significance:



                  =FLOOR(value, 1)





                  share|improve this answer













                  I believe FLOOR is the way, and you can specify the significance:



                  =FLOOR(value, 1)






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 8 at 11:11









                  Ahmed AshourAhmed Ashour

                  1,3872716




                  1,3872716

























                      1














                      There are several ways to do this. Aside from floor there is also:



                      =ROUNDOWN(value,0)

                      or

                      =INT(value)

                      or

                      =value-MOD(value,1)

                      or

                      =LEFT(A2,FIND(".",A2)-1)*1
                      =LEFT(A2,FIND(".",A2)-1)/1
                      =LEFT(A2,FIND(".",A2)-1)+0
                      =--LEFT(A2,FIND(".",A2)-1)
                      NOTE: the math operation at the end and the leading -- turns the text back into a number.


                      If you do not need the value as a number useable in formulas you could also do:



                      =LEFT(A2,FIND(".",A2)-1)&".00"


                      enter image description here



                      Note: With the exception of the text option, you will have to adjust the format of the cells to display 2 decimal accuracy as under general cell format, leading and trailing zeros do not display. With the text option you may need to adjust cell justification to suit your needs.






                      share|improve this answer






























                        1














                        There are several ways to do this. Aside from floor there is also:



                        =ROUNDOWN(value,0)

                        or

                        =INT(value)

                        or

                        =value-MOD(value,1)

                        or

                        =LEFT(A2,FIND(".",A2)-1)*1
                        =LEFT(A2,FIND(".",A2)-1)/1
                        =LEFT(A2,FIND(".",A2)-1)+0
                        =--LEFT(A2,FIND(".",A2)-1)
                        NOTE: the math operation at the end and the leading -- turns the text back into a number.


                        If you do not need the value as a number useable in formulas you could also do:



                        =LEFT(A2,FIND(".",A2)-1)&".00"


                        enter image description here



                        Note: With the exception of the text option, you will have to adjust the format of the cells to display 2 decimal accuracy as under general cell format, leading and trailing zeros do not display. With the text option you may need to adjust cell justification to suit your needs.






                        share|improve this answer




























                          1












                          1








                          1







                          There are several ways to do this. Aside from floor there is also:



                          =ROUNDOWN(value,0)

                          or

                          =INT(value)

                          or

                          =value-MOD(value,1)

                          or

                          =LEFT(A2,FIND(".",A2)-1)*1
                          =LEFT(A2,FIND(".",A2)-1)/1
                          =LEFT(A2,FIND(".",A2)-1)+0
                          =--LEFT(A2,FIND(".",A2)-1)
                          NOTE: the math operation at the end and the leading -- turns the text back into a number.


                          If you do not need the value as a number useable in formulas you could also do:



                          =LEFT(A2,FIND(".",A2)-1)&".00"


                          enter image description here



                          Note: With the exception of the text option, you will have to adjust the format of the cells to display 2 decimal accuracy as under general cell format, leading and trailing zeros do not display. With the text option you may need to adjust cell justification to suit your needs.






                          share|improve this answer















                          There are several ways to do this. Aside from floor there is also:



                          =ROUNDOWN(value,0)

                          or

                          =INT(value)

                          or

                          =value-MOD(value,1)

                          or

                          =LEFT(A2,FIND(".",A2)-1)*1
                          =LEFT(A2,FIND(".",A2)-1)/1
                          =LEFT(A2,FIND(".",A2)-1)+0
                          =--LEFT(A2,FIND(".",A2)-1)
                          NOTE: the math operation at the end and the leading -- turns the text back into a number.


                          If you do not need the value as a number useable in formulas you could also do:



                          =LEFT(A2,FIND(".",A2)-1)&".00"


                          enter image description here



                          Note: With the exception of the text option, you will have to adjust the format of the cells to display 2 decimal accuracy as under general cell format, leading and trailing zeros do not display. With the text option you may need to adjust cell justification to suit your needs.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Feb 8 at 11:57

























                          answered Feb 8 at 11:47









                          Forward EdForward Ed

                          1,064215




                          1,064215






























                              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.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1403492%2freplace-decimal-values-with-zero-decimal-value%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

                              Список кардиналов, возведённых папой римским Каликстом III

                              Deduzione

                              Mysql.sock missing - “Can't connect to local MySQL server through socket”