0
以下link有一個按鈕「導出到Excel」。點擊後,它下載一張Excel表格,其中包含特定股票的詳細信息。通過VBA從網頁導入數據
我想通過Excel VBA獲取這個下載的excel文件,在那裏我有一組鏈接,通過它們循環下載每本鏈接的書籍,複製某些數據並粘貼它。在編寫代碼的時候,我意識到要從網上下載,鏈接應該以xlsx或者csv或者與excel相關的東西來結束。
Sub transfercsv()
sLink = "http://www.screener.in/company/?q=500095" 'I can loop and attach links to this..
sfile = "downloaded.xls" 'I can get this rectified as well...
ssheet = "Data sheet"
'Further code I can build up
....
End sub
最後的問題:「我怎樣才能讓Excel VBA下載導出到Excel鏈接的工作簿。」
或
「我怎樣才能找到導出到Excel按鈕後面的XLSX鏈接。」
P.S: - 我已標記爲JSON以及,具有因,而研究我發現,在出口環節都有事做JSON ..
感謝Pratyush ......我一直在用Google搜索你的話......如果你能指導我去任何相同的鏈接... – Vasim
你可以試試這些鏈接:https://spreadsheets.google.com/pub?key = pzLh3kFGO3Cw_nZZVZj0_HA&output = html&gid = 0&single = true and http://www.labnol.org/internet/import-html-in-google-docs/28125/ – Pratyush