How to extract value from Excel function? Unicorn Meta Zoo #1: Why another podcast? ...

How to open locks without disable device?

Drawing a german abacus as in the books of Adam Ries

Bayes factor vs P value

What makes accurate emulation of old systems a difficult task?

How long after the last departure shall the airport stay open for an emergency return?

Why do games have consumables?

Why do distances seem to matter in the Foundation world?

A faster way to compute the largest prime factor

Is accepting an invalid credit card number a security issue?

Does Mathematica have an implementation of the Poisson binomial distribution?

When do you need buffers/drivers on buses in a microprocessor design?

Reattaching fallen shelf to wall?

Has a Nobel Peace laureate ever been accused of war crimes?

What is this word supposed to be?

Multiple fireplaces in an apartment building?

Do I need to protect SFP ports and optics from dust/contaminants? If so, how?

Contradiction proof for inequality of P and NP?

How can I wire a 9-position switch so that each position turns on one more LED than the one before?

Tikz positioning above circle exact alignment

A Paper Record is What I Hamper

Unable to completely uninstall Zoom meeting app

Raising a bilingual kid. When should we introduce the majority language?

Co-worker works way more than he should

As an international instructor, should I openly talk about my accent?



How to extract value from Excel function?



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraGetting the value in one column from a formula on another column in excelHow to add/subtract months from given date in ExcelHow can I get the displayed value of a cell in MS Excel ( for text that was converted to dates)?Representing Specific Data from a Dynamic Database (Array) in ExcelIn Excel, input values of one column based on value of anotherextract a phrase from excel cellExcel Compare Function / SoftwareSum value returned from function ExcelSort data with a functionFind adjacent values from a cell





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







0















I would like to extract a value from an Excel function. I have a database of over 3000 entries, where each entry is given as a DATE function plus some value. Here is an example: "= DATE(2014; 7;1) + 0,0180555555555556".



Is there a neat way to subtract the second value over all the entries?










share|improve this question







New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2





    You can use formulas for this. Look into FIND, and LEFT

    – cybernetic.nomad
    21 hours ago


















0















I would like to extract a value from an Excel function. I have a database of over 3000 entries, where each entry is given as a DATE function plus some value. Here is an example: "= DATE(2014; 7;1) + 0,0180555555555556".



Is there a neat way to subtract the second value over all the entries?










share|improve this question







New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2





    You can use formulas for this. Look into FIND, and LEFT

    – cybernetic.nomad
    21 hours ago














0












0








0








I would like to extract a value from an Excel function. I have a database of over 3000 entries, where each entry is given as a DATE function plus some value. Here is an example: "= DATE(2014; 7;1) + 0,0180555555555556".



Is there a neat way to subtract the second value over all the entries?










share|improve this question







New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I would like to extract a value from an Excel function. I have a database of over 3000 entries, where each entry is given as a DATE function plus some value. Here is an example: "= DATE(2014; 7;1) + 0,0180555555555556".



Is there a neat way to subtract the second value over all the entries?







microsoft-excel worksheet-function






share|improve this question







New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 21 hours ago









logingwithgooglelogingwithgoogle

1




1




New contributor




logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






logingwithgoogle is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 2





    You can use formulas for this. Look into FIND, and LEFT

    – cybernetic.nomad
    21 hours ago














  • 2





    You can use formulas for this. Look into FIND, and LEFT

    – cybernetic.nomad
    21 hours ago








2




2





You can use formulas for this. Look into FIND, and LEFT

– cybernetic.nomad
21 hours ago





You can use formulas for this. Look into FIND, and LEFT

– cybernetic.nomad
21 hours ago










2 Answers
2






active

oldest

votes


















0














I use a US Locale, so in A1 I enter:



=DATE(2014,7,1)+0.0180555555555556


and in another cell:



=MID(FORMULATEXT(A1),FIND("+",FORMULATEXT(A1))+1,99)


enter image description here






share|improve this answer































    0














    Not sure if you want to extract or subtract the fractional part (you've used both terms in your question, and they are not the same.



    Excel stores dates/times as days and fractions of a day. So:



    To extract (return only the fractional part):



    =MOD(DATE(2014; 7;1) + 0,0180555555555556;1)


    To subtract (return only the integer part):



    =INT(DATE(2014; 7;1) + 0,0180555555555556)


    Or, you can just apply those functions to the cell containing the formula



    In other words, if the formula is in A1:



    =MOD(A1;1)  will return (extract) the decimal value
    =INT(A1) will return (subtract the decimal value) the integer value





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


      }
      });






      logingwithgoogle is a new contributor. Be nice, and check out our Code of Conduct.










      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1429168%2fhow-to-extract-value-from-excel-function%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














      I use a US Locale, so in A1 I enter:



      =DATE(2014,7,1)+0.0180555555555556


      and in another cell:



      =MID(FORMULATEXT(A1),FIND("+",FORMULATEXT(A1))+1,99)


      enter image description here






      share|improve this answer




























        0














        I use a US Locale, so in A1 I enter:



        =DATE(2014,7,1)+0.0180555555555556


        and in another cell:



        =MID(FORMULATEXT(A1),FIND("+",FORMULATEXT(A1))+1,99)


        enter image description here






        share|improve this answer


























          0












          0








          0







          I use a US Locale, so in A1 I enter:



          =DATE(2014,7,1)+0.0180555555555556


          and in another cell:



          =MID(FORMULATEXT(A1),FIND("+",FORMULATEXT(A1))+1,99)


          enter image description here






          share|improve this answer













          I use a US Locale, so in A1 I enter:



          =DATE(2014,7,1)+0.0180555555555556


          and in another cell:



          =MID(FORMULATEXT(A1),FIND("+",FORMULATEXT(A1))+1,99)


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 18 hours ago









          Gary's StudentGary's Student

          14.3k31834




          14.3k31834

























              0














              Not sure if you want to extract or subtract the fractional part (you've used both terms in your question, and they are not the same.



              Excel stores dates/times as days and fractions of a day. So:



              To extract (return only the fractional part):



              =MOD(DATE(2014; 7;1) + 0,0180555555555556;1)


              To subtract (return only the integer part):



              =INT(DATE(2014; 7;1) + 0,0180555555555556)


              Or, you can just apply those functions to the cell containing the formula



              In other words, if the formula is in A1:



              =MOD(A1;1)  will return (extract) the decimal value
              =INT(A1) will return (subtract the decimal value) the integer value





              share|improve this answer




























                0














                Not sure if you want to extract or subtract the fractional part (you've used both terms in your question, and they are not the same.



                Excel stores dates/times as days and fractions of a day. So:



                To extract (return only the fractional part):



                =MOD(DATE(2014; 7;1) + 0,0180555555555556;1)


                To subtract (return only the integer part):



                =INT(DATE(2014; 7;1) + 0,0180555555555556)


                Or, you can just apply those functions to the cell containing the formula



                In other words, if the formula is in A1:



                =MOD(A1;1)  will return (extract) the decimal value
                =INT(A1) will return (subtract the decimal value) the integer value





                share|improve this answer


























                  0












                  0








                  0







                  Not sure if you want to extract or subtract the fractional part (you've used both terms in your question, and they are not the same.



                  Excel stores dates/times as days and fractions of a day. So:



                  To extract (return only the fractional part):



                  =MOD(DATE(2014; 7;1) + 0,0180555555555556;1)


                  To subtract (return only the integer part):



                  =INT(DATE(2014; 7;1) + 0,0180555555555556)


                  Or, you can just apply those functions to the cell containing the formula



                  In other words, if the formula is in A1:



                  =MOD(A1;1)  will return (extract) the decimal value
                  =INT(A1) will return (subtract the decimal value) the integer value





                  share|improve this answer













                  Not sure if you want to extract or subtract the fractional part (you've used both terms in your question, and they are not the same.



                  Excel stores dates/times as days and fractions of a day. So:



                  To extract (return only the fractional part):



                  =MOD(DATE(2014; 7;1) + 0,0180555555555556;1)


                  To subtract (return only the integer part):



                  =INT(DATE(2014; 7;1) + 0,0180555555555556)


                  Or, you can just apply those functions to the cell containing the formula



                  In other words, if the formula is in A1:



                  =MOD(A1;1)  will return (extract) the decimal value
                  =INT(A1) will return (subtract the decimal value) the integer value






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 12 hours ago









                  Ron RosenfeldRon Rosenfeld

                  2,1242611




                  2,1242611






















                      logingwithgoogle is a new contributor. Be nice, and check out our Code of Conduct.










                      draft saved

                      draft discarded


















                      logingwithgoogle is a new contributor. Be nice, and check out our Code of Conduct.













                      logingwithgoogle is a new contributor. Be nice, and check out our Code of Conduct.












                      logingwithgoogle is a new contributor. Be nice, and check out our Code of Conduct.
















                      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%2f1429168%2fhow-to-extract-value-from-excel-function%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

                      Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

                      Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

                      Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...