IMPORTXML() only works on a part of the xPath










0















I would like to download parts (i.e. specific rows and columns ... cells) from the Balance Sheet information found here:



https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual



Using 'xPath' for Chrome I have:



/html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]/div[2]/div/ng-transclude/table/tbody/tr[4]/td[3]


Using 'xPath Helper' for Chrome I have:



/html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper ']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']/div[@class='bc-table-scrollable']/div[@class='bc-table-scrollable-inner']/ng-transclude/table[@class='ng-scope']/tbody/tr[4]/td[3]


but I'm only able return all data from the web page with parts of the paths - i.e.:



=IMPORTXML(A1,"/html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]")


and:



=IMPORTXML(A1,"/html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']")


Initially I thought it had something to do with 'ng-transclude'-section ... but as you can see, I don't even reach that part of the path.



I hope that someone can point me in the right direction of getting this problem solved.










share|improve this question




























    0















    I would like to download parts (i.e. specific rows and columns ... cells) from the Balance Sheet information found here:



    https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual



    Using 'xPath' for Chrome I have:



    /html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]/div[2]/div/ng-transclude/table/tbody/tr[4]/td[3]


    Using 'xPath Helper' for Chrome I have:



    /html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper ']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']/div[@class='bc-table-scrollable']/div[@class='bc-table-scrollable-inner']/ng-transclude/table[@class='ng-scope']/tbody/tr[4]/td[3]


    but I'm only able return all data from the web page with parts of the paths - i.e.:



    =IMPORTXML(A1,"/html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]")


    and:



    =IMPORTXML(A1,"/html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']")


    Initially I thought it had something to do with 'ng-transclude'-section ... but as you can see, I don't even reach that part of the path.



    I hope that someone can point me in the right direction of getting this problem solved.










    share|improve this question


























      0












      0








      0








      I would like to download parts (i.e. specific rows and columns ... cells) from the Balance Sheet information found here:



      https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual



      Using 'xPath' for Chrome I have:



      /html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]/div[2]/div/ng-transclude/table/tbody/tr[4]/td[3]


      Using 'xPath Helper' for Chrome I have:



      /html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper ']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']/div[@class='bc-table-scrollable']/div[@class='bc-table-scrollable-inner']/ng-transclude/table[@class='ng-scope']/tbody/tr[4]/td[3]


      but I'm only able return all data from the web page with parts of the paths - i.e.:



      =IMPORTXML(A1,"/html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]")


      and:



      =IMPORTXML(A1,"/html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']")


      Initially I thought it had something to do with 'ng-transclude'-section ... but as you can see, I don't even reach that part of the path.



      I hope that someone can point me in the right direction of getting this problem solved.










      share|improve this question
















      I would like to download parts (i.e. specific rows and columns ... cells) from the Balance Sheet information found here:



      https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual



      Using 'xPath' for Chrome I have:



      /html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]/div[2]/div/ng-transclude/table/tbody/tr[4]/td[3]


      Using 'xPath Helper' for Chrome I have:



      /html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper ']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']/div[@class='bc-table-scrollable']/div[@class='bc-table-scrollable-inner']/ng-transclude/table[@class='ng-scope']/tbody/tr[4]/td[3]


      but I'm only able return all data from the web page with parts of the paths - i.e.:



      =IMPORTXML(A1,"/html/body/div[2]/div/div[2]/div[2]/div/div[2]/div/div/div/div[3]")


      and:



      =IMPORTXML(A1,"/html/body/div[@id='bc-main-content-wrapper']/div[@class='inner-wrap']/div[@class='main-content-wrapper content js-main-content-wrapper']/div[@class='row']/div[@class='large-12 columns']/div[@class='one-column-block']/div[@class='row']/div[@id='main-content-column']/div[@class='column-inner']/div[@class='bc-financial-report']")


      Initially I thought it had something to do with 'ng-transclude'-section ... but as you can see, I don't even reach that part of the path.



      I hope that someone can point me in the right direction of getting this problem solved.







      xml xpath google-sheets






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 7:12







      user2628114

















      asked Nov 12 '18 at 10:36









      user2628114user2628114

      63




      63






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Perhaps:



          For whole row: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,) (example for Inventories).



          For whole column: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),,3) (example for 09-2017).



          For cell: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,3) (example for Inventories for 09-2017).






          share|improve this answer


















          • 1





            Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

            – user2628114
            Dec 9 '18 at 9:36










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          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%2fstackoverflow.com%2fquestions%2f53260344%2fimportxml-only-works-on-a-part-of-the-xpath%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Perhaps:



          For whole row: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,) (example for Inventories).



          For whole column: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),,3) (example for 09-2017).



          For cell: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,3) (example for Inventories for 09-2017).






          share|improve this answer


















          • 1





            Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

            – user2628114
            Dec 9 '18 at 9:36















          0














          Perhaps:



          For whole row: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,) (example for Inventories).



          For whole column: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),,3) (example for 09-2017).



          For cell: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,3) (example for Inventories for 09-2017).






          share|improve this answer


















          • 1





            Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

            – user2628114
            Dec 9 '18 at 9:36













          0












          0








          0







          Perhaps:



          For whole row: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,) (example for Inventories).



          For whole column: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),,3) (example for 09-2017).



          For cell: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,3) (example for Inventories for 09-2017).






          share|improve this answer













          Perhaps:



          For whole row: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,) (example for Inventories).



          For whole column: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),,3) (example for 09-2017).



          For cell: =index(importhtml("https://www.barchart.com/stocks/quotes/AAPL/balance-sheet/annual","table"),7,3) (example for Inventories for 09-2017).







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 2 '18 at 11:38









          pnutspnuts

          48.1k76296




          48.1k76296







          • 1





            Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

            – user2628114
            Dec 9 '18 at 9:36












          • 1





            Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

            – user2628114
            Dec 9 '18 at 9:36







          1




          1





          Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

          – user2628114
          Dec 9 '18 at 9:36





          Thank you pnuts for your very elegant and informative solution! On a side note - I managed to access data via a Google script - the following way (not so pretty - but it works): doc.html.body.div[1].div.div[1].div[1].div.div[1].div.div.div.div[2].getElements()[1].table.tbody.tr[index].td[3].getText().replace("$", "").split(",").join("");

          – user2628114
          Dec 9 '18 at 9:36

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • 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%2fstackoverflow.com%2fquestions%2f53260344%2fimportxml-only-works-on-a-part-of-the-xpath%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

          How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

          Syphilis

          Darth Vader #20