Excel VBA - Get Stock Quotes from Yahoo Finance API

Sdílet
Vložit
  • čas přidán 5. 07. 2024
  • / freetutorials
    *Edit this no longer works due to Yahoo abruptly decommissioning their stock API. Still worth a watch if you want to learn how to how to interact with an API in excel and some string manipulation techniques
    In this tutorial, I show you how to use Yahoo's finance API to download real time stock quote information. This tutorial utilizes a for loop, string manipulation / concatenation, the WinHTTP COM object, and the split string function.
    Since posterous closed: brettdotnet.wordpress.com/
    BTW. If your work blocks WinHTTP through the firewall use XMLHTTP
    Workbook (updated api URL 6/26/2017)
    www.dropbox.com/s/aihc2nfhlyl...
    New URL:
    Dim URL As String: URL = "download.finance.yahoo.com/d/q..." & Symbols & "&f=snl1hg"
    Update this line to this:
    Dim Lines As Variant: Lines = Split(Resp, Chr(10))

Komentáře • 489

  • @Paul-4177
    @Paul-4177 Před 6 lety

    Thank you for the download quotes, really appreciate your time in making this video. First time VBA user here and I could follow and modify your program to fit my needs. Your video technique allowed for people of limited experience to pause, review and make the necessary changes; the interim "test" checks you used were invaluable. Well done.

  • @haoyangrocks
    @haoyangrocks Před 7 lety +1

    This is such an awesome tutorial. It really opened my eyes to the possibility of accessing the vast financial data from the web and using it in excel. Also enjoyed the general VBA programming tips and tricks and you went through. Thank you so much for sharing! And the pace was just perfect. (of course, I had to stop and go back as I went thru but that is normal).

  • @Ashlar62
    @Ashlar62 Před 9 lety

    I know zilch about any forms of programming, but wanted this exact type of solution to updating my financial spreadsheets. Your elegant solution helped with my laziness and your instructions were spot on. Thanks and thanks again!

  • @scottgaines2677
    @scottgaines2677 Před 6 lety

    Thanks for the Video. As someone who is new to VBA, you showed alot of great tips! Appreciate the explaination and moving along so quickly. I'll be watching this video a few times to make sure I get everything :)

  • @ocp8433
    @ocp8433 Před 8 lety

    As a complete newb, I was able to use your video to successfully (finally) get it working perfectly with our stock stop/loss modelling efforts. THANK YOU!!!! (had to use the CHR(10) recommendation made below)

  • @ddochstader
    @ddochstader Před 10 lety

    Thank you so much. I know little enough that I would never figure out how to do this on my own. I appreciate that you shared your knowledge. In a way its a good thing that the link to the code didn't work anymore. This way I learned a little more by plunking it in my self. Thanks again, Doug.

  • @shlerTHEnumbas
    @shlerTHEnumbas Před 10 lety

    Brett I have watched a few of your videos the last couple of days. you are great man! Thanks for teaching us. You just earned my subscribe!!

  • @JoeG2324
    @JoeG2324 Před 11 lety

    wow, I have to admit, this was probably the best vba video I've seen on youtube. great job!

  • @edmundingham5710
    @edmundingham5710 Před 10 lety +2

    Brilliant - I'm new to this but this is best video I have looked at so far - and I've looked at a lot!

  • @johnosborn444
    @johnosborn444 Před 10 lety

    info was great, pace was excellent (rewind/pause worked well), and great explanations of almost all aspects. Thank you!!

  • @meyersjosh
    @meyersjosh Před 10 lety

    I just want to thank you for this, i used it to build an uber spreadsheet to track all my investments. I had literally never written anything like this before (although I'm pretty competent in Excel generally) but you did such a great job explaining that I figured it out. Thanks. I also recommend Activetick for anyone who wants tick by tick real-time, but it only does stocks/etfs, no mutual funds, so you'll still need yahoo api for that.

  • @Mat-ml9oq
    @Mat-ml9oq Před 9 lety

    Thanks man that was great! My friend showed me this a while back; he loved it too. Best Regards, Mat

  • @timothywolff4150
    @timothywolff4150 Před 9 lety +1

    Awesome tutorial with great explanations. I have 0 experience with VBA but was able to follow all the way to the end.

  • @arn76
    @arn76 Před 6 lety

    Awesome. Thank you. I downloaded your sheet from dropbox and was able to add columns for other data. Thank you once again.

  • @richstevenson1
    @richstevenson1 Před 4 lety

    Was great that you showed the end result up front. Thank you!

  • @PopLaCork
    @PopLaCork Před 9 lety

    Great job and thanks for sharing. It is great to watch someone else build code from scratch. I am sure this has helped many clear up the logical process.

  • @Bill_Woo
    @Bill_Woo Před 8 lety +3

    Thank you for a phenomenally useful and well delivered "lesson." Following are a couple of tweaks that users might consider and possibly benefit from. I understand that in the interest of time you had to just go with expedient choices since the video is already long as it is. Anyway your delivery is quite efficient. The zooming is extremely well employed and aids viewer comprehension immensely. I wish someone would teach me how you built this video. Also, your very time efficient visits to debug.print and watch window, use of Stop, and testing the URL manually, are all exceptionally fine instructive techniques. Success.
    Tweaks:
    - The reference can be omitted and your http dim can be replaced with
    dim http as object
    and you would add this line before the "GET"
    set http=CreateObject("MSXML2.XMLHTTP") 'for XP
    (MSXML3 or MSXML6 may be needed. Check SYSTEM32 to see which you have.)
    - After the first VbLF split, I would not use split to break up the individual comma separated rows for each security. I would just use
    columns(1).TextToColumns Destination:=range("A1"), comma:=true
    That handles every column, although one might want to break up the dual change values (amount and percent) when using flag c. It also automatically addresses commas within quote-delimited strings. (Sorry, but the comma approach was not your proudest moment in the vid!)
    - Autofit can be a tiny bit annoying from fluctuations like 9.94 becoming 10.02 so I prefer to lock down the column widths (or only grow them).
    - The worksheet qualifier is unnecessary, as well as W itself.
    These are small tweaks. Great video. Great presentation.

    • @dankordelski388
      @dankordelski388 Před 8 lety

      +Bill Woo I am really interested in your tweak using the following line:
      Columns(1).TextToColumns Destination:=Range("A1"), comma:=True
      I placed that line directly below the line
      Lines = Split(Resp, Chr(10))
      It appears that your line of code should place the data in the worksheet starting at cell A1 but I do not have data on my sheet after running that line...how would I get the 'TextToColumns' data on my worksheet? I appreciate your help!!!

    • @Bill_Woo
      @Bill_Woo Před 8 lety

      +Dan Kordelski Use something like
      for i = 0 to ubound(lines)
      cells(i+1,1)=lines(i)
      next
      You're correct, lines needs to be placed on the sheet first.

  • @fashionmountain8337
    @fashionmountain8337 Před 9 lety

    This was of a great help, thank you so much!! (if fact this was my first VBA code, and the video helped me to get a first touch on it )

  • @ElGancha
    @ElGancha Před 6 lety

    hey my dude
    you handled this code like I handle my money - A LOT

  • @DontFretBrett
    @DontFretBrett  Před 10 lety +33

    Sorry! I figured I'll go fast and people can pause / rewatch if they want. I've watched tutorials before and thought for the love of god, I get it!! Move on :)

    • @xswooshx
      @xswooshx Před 9 lety +3

      I thought this was well paced. That's why there's a Pause button (h/t Google).
      Thanks for putting this together!

    • @dankordelski388
      @dankordelski388 Před 8 lety +1

      +DontFretBrett Great Tutorial! It was SO helpful to what you use Stop, debug.print, and the intermediate window to explain and troubleshoot. Totally worth the price of admission!!!

    • @chrisklest1238
      @chrisklest1238 Před 6 lety

      This is a perfect pace. Please don't slow down. People can slow down the video using the gear icon and speed function in CZcams.

    • @tthinker9897
      @tthinker9897 Před 3 lety

      Wow, way to fast for me, and I had to stop, go back, restart repeatedly to see exactly what you did and to get my excel to replicate your results. Still, was thrilled until I realized it doesn't work any more.

  • @ctlow2577
    @ctlow2577 Před 6 lety

    thank you so much for the vid! although there were some issues, but the comments section helped me to solve it. thanks!!

  • @tsilung2599
    @tsilung2599 Před 7 lety

    Awesome video. Extremely helpful. Thanks!

  • @gypsyinthebolt
    @gypsyinthebolt Před 10 lety

    Great work with the tutorial, Brett!

  • @hogakala07
    @hogakala07 Před 7 lety

    Hey DFB, thanks for sharing your idea. This is great stuff. Now that microsoft MSNBC stock connection is no longer working this perhaps is the best alternate route...Thanks again.

  • @nuxiongmao8612
    @nuxiongmao8612 Před 8 lety

    Great. it works. Learn a few things from your video.

  • @micahneely6542
    @micahneely6542 Před 9 lety

    Smooth de-bugging. Love it.

  • @pmdu59
    @pmdu59 Před 10 lety

    Excellent video !! Works well for me, thank you !

  • @suetheo6007
    @suetheo6007 Před 10 lety

    you just saved my life.
    Thank you so much!

  • @HansGeorgHorzella
    @HansGeorgHorzella Před 9 lety

    Thank you very much for this tutorial.....
    nice work

  • @shabeershah2002
    @shabeershah2002 Před 8 lety

    Super Bro..............keep up good work , your teaching is so good,

  • @milkchaser
    @milkchaser Před 11 lety

    Thanks. Excellent tutorial. I learned a lot (and I needed to do this).

  • @BDTrr
    @BDTrr Před 8 lety

    Awesome tutorial. Works great :)

  • @jeffeschright8309
    @jeffeschright8309 Před 10 lety

    Thank you for the great instructional Video!

  • @bhavin_ch
    @bhavin_ch Před 10 lety

    Brilliant!!! Just what I needed...
    next stop - MATLAB!!!

  • @JudeBarak
    @JudeBarak Před 9 lety

    Great tutorial. Thank you!!

  • @Algorithmscience
    @Algorithmscience Před 5 lety +1

    Good news, even though the CSV interface has gone away, you can still get this data with the Yahoo JSON feeds, and its real time prices for many exchanges.

  • @JWDowdee
    @JWDowdee Před 11 lety

    Excellent video! Thanks! Keep up the good work.

  • @vamsi9209
    @vamsi9209 Před 10 lety

    Very nice video and helpful.. Thank you :)

  • @DontFretBrett
    @DontFretBrett  Před 11 lety

    Dave, it allows 200 at a time, but it's easy to expand this out too as many as you want with a loop (loading 200 each time)

  • @vinnypardi
    @vinnypardi Před 8 lety

    You're the man! Thanks

  • @haha18542
    @haha18542 Před 9 lety

    In office 2013, to split the lines, the split function should be written as Split(Resp, vbLf). I spent two hours and finally figured this out.

  • @TonyDiaz.
    @TonyDiaz. Před 9 lety

    @NOAH Set is for objects, the variables without Set are functions (like SomeVariable = "SomeString")

  • @joem8251
    @joem8251 Před 9 lety

    Thank you... on so many levels!

    • @joem8251
      @joem8251 Před 9 lety

      ...especially the clear explanations of each code, line-by-line -- extremely helpful.

  • @kylemeyer5949
    @kylemeyer5949 Před 9 lety +1

    Awesome tutorial!

    • @DontFretBrett
      @DontFretBrett  Před 9 lety

      Thank you :)

    • @brezaee
      @brezaee Před 9 lety

      DontFretBrett Hi Brett, I wanted to let you know that as of today the download no longer works. This was also noted by another reader (jbarossi2). Please help us to resolve this and I thank you for taking the time to give us all tutorials that are very help.

  • @eliwhittle2267
    @eliwhittle2267 Před 10 lety

    You're the man. Thanks a ton.

  • @ubaddala
    @ubaddala Před 7 lety

    Thanks for the good video.

  • @AchillesModern
    @AchillesModern Před 8 lety

    Great video thanks!

  • @xuanwang2772
    @xuanwang2772 Před 10 lety

    it is very cool~ Great Job~

  • @DontFretBrett
    @DontFretBrett  Před 10 lety +1

    Thanks for the positive feedback guys. Someone asked about Mac, I don't know much about excel on Mac sorry. I know it can't use activex com objects like scripting runtime, but the syntax is very similar

    • @ArturoGarzaID
      @ArturoGarzaID Před 9 lety

      Are you a software engineer?

    • @AustinKingNewportBeach
      @AustinKingNewportBeach Před 9 lety

      I got a runtime error 9 after row 200. I'm using your exact code. Can you help?

    • @robbybroon4904
      @robbybroon4904 Před 9 lety

      I'm running a Windows VM on my Mac, just to be able to run this. Does not work on the Mac.

    • @PrakashBagchi
      @PrakashBagchi Před 9 lety

      Hi can you share your mail address and contact number, Iam facing problems in a VBA script. want to discuss with you. If you want to keep your contact details private then please mail me here in bagchi.prakash81@gmail.com, I'll send you the script and required result.

    • @bosteador
      @bosteador Před 9 lety

      ***** It won't work on OSX because this uses windows specific commands. I was trying to find a way around it, but I ended just using my windows machine.

  • @MohsinKhan-dg3tk
    @MohsinKhan-dg3tk Před 7 lety

    Superb Macro ... Thanks

  • @Waelsa2008
    @Waelsa2008 Před 9 lety

    Very nice, thank you.

  • @sethsvoboda2207
    @sethsvoboda2207 Před 9 lety

    Well Done, Very Well Done....

  • @TheZingaro2
    @TheZingaro2 Před 11 lety

    You are simply a genius! *.*

  • @SuperWombus
    @SuperWombus Před 10 lety

    Awesome video Brett thanks! I just started VBA a week or so ago and this was incredibly helpful.
    I was messing around with scraping BLS reports (non-farm payrolls) with PHP, but do you have any examples in VBA to maybe start a loop in VBA at 8:29:45AM EST, keep checking the report URL until it's been updated (i.e. VBA detect a "July" heading vs a "June" heading which it would ignore) and use some parsing to put the U-6 rate in a cell range?

  • @dgb5820
    @dgb5820 Před 2 lety

    Wow this is awesome

  • @vince1115
    @vince1115 Před 6 lety

    This is great, thank you for this video! My next question would be, how do I use this code to download historical prices from a CSV file for a particular stock symbol, and paste the output into a specific range on a pre-formatted worksheet within my workbook?

  • @sparklive2012
    @sparklive2012 Před 7 lety

    Thanks! infomrative source for reference.

  • @justinlouie6802
    @justinlouie6802 Před 8 lety +1

    Hey Brett. This post is genius. Thanks a bunch.
    Do you know if there is a work around for a mac? I get stuck with the winhttp part.

  • @sashobaki
    @sashobaki Před 9 lety

    Respect! thank you so much

  • @richardrivera7826
    @richardrivera7826 Před 9 lety

    You did an awesome job here! Do you have one to download historical data on multiple companies? I'm looking for dividend and dividend pay date.

  • @ASmith-sd4yc
    @ASmith-sd4yc Před 9 lety

    Finally, a stock market tool, using VBA, that is clear as glass. Next time I see you I'm either going to hug your neck or buy you a beer; you'll probably prefer the beer. Many THANKS

  • @solomone2216
    @solomone2216 Před 9 lety

    well explained. good tutorial. thanks for sharing. i have a worksheet that when either of the sheet becomes active it messes up the other. is there a way to correct this using macro? for instance, i have sheet1 & sheet2. both have separate macros that when sheet1 is open or active, it execute the macro. verse versa.

  • @XboxvidsHM
    @XboxvidsHM Před 9 lety

    Would be great if you could update this tutorial because it's a great one!

  • @keenanhollow746
    @keenanhollow746 Před 9 lety

    Brett
    This is fantastic. I had never done any coding before but following your directions enabled me to build this sheet. Love it.
    One tiny glitch...one of the attributes I import is dividend yield...the figure imports as an integer, so for example a 5% yield translates in excel as 500%. Any way to code in a fix (for example, divide value by 100) that would properly format this? Thank you in advance. Dan

  • @BjjPhysio
    @BjjPhysio Před 10 lety +1

    This was very helpful! Just one question. If I wanted to add more columns (PE ratio, percentage change, etc...) how do you add the columns after inserting the symbols in the URL? Many thanks

    • @werlloo
      @werlloo Před 10 lety

      I'm also having this issue.

  • @rwhite3141592
    @rwhite3141592 Před 10 lety

    This is fantastic!!! Exactly what I needed except could you show how to do the loop to do more than 200? Thanks for the great work.

    • @israelrodriguez7671
      @israelrodriguez7671 Před 10 lety

      I am having the same problem trying to loop for more than 200 stocks, did you have any luck finding a solution??

  • @harrisondelfino3405
    @harrisondelfino3405 Před 8 lety +1

    MarketXLS works for me great for this.

  • @dennis22062
    @dennis22062 Před 7 lety

    Hey there, this is pretty awesome, thanks for sharing. One questions only: Is it possible to import data/prices from other websites ?

  • @black-catmusic3619
    @black-catmusic3619 Před 5 lety +7

    is there an alternative for the yahoo API?

  • @Balakai
    @Balakai Před 9 lety +12

    After some investigation, you need to change the split to "Split(Resp, vbLf)" then it should work.

    • @stephanelogist314
      @stephanelogist314 Před 9 lety

      Ashley Howell Thanks can you please part of the code we need to change ?
      I changed to Lines = Split(Resp,vbLf) but doesn't seems to be suffisant

    • @SouthSamton
      @SouthSamton Před 9 lety

      Ashley Howell you are a sir!

    • @peterdalgaard8322
      @peterdalgaard8322 Před 9 lety

      Ashley Howell super it works, thanks

  • @ja95014
    @ja95014 Před 9 lety

    Brett, thanks a million! I have been through a lot with web access techniques to stock prices... and I do have a couple of comments/questions:
    Comments:
    1): I was able to replicate your software up until the WinHttpRequest statement. I am (still) using Excel 2003 (why pay more? and again?), which threw an error (type not defined). I did go to the Tools->References and found the HTTP services, so I'm not sure... probably my old Excel?
    2) For others who get this far with an oilder Excel, I used an alternative function I had found in my last week's research: Set Http = CreateObject("MSXML2.XMLHTTP") which replaces just the one line with the WinHttpRequest type.
    3) Next, I got an error when I got to Http.Send. I had verified that the URL worked in a browser window and was puzzled for quite a while. Finally, playing with the browser test again (and again), I noticed that the return of the data also had modified the URL to include 'download' as in 'download.finance.yahoo.com/d/quotes.csv?s=" etc. This fixed my problem!
    4) I added a number of "constants" (does visual basic have constants? I just used variables) to check the active sheet, to modify the position of the column and starting row for symbols, but that is all pretty obvious.
    Question:
    1) I wasn't able to get the cute Refresh button to work in Excel 2003. Consequently, I wonder how I will get the subroutine to run...I turned on the VisualBasic toolbar but when I hit the RunMacro button, I have to live with a popup window every time, telling me that it is about to run the only function I have defined... SIGH!
    2) IF I can convert the subroutine to a Function (why not?), I can readily force it to rerun from the worksheet (and hope I don't get the popup each time)...
    Any hints???
    My history is interesting (to me at least)... Originally I was happy using the MSN Money Stock Quotes, but support finally disappeared. Then I found an example that still used MSN but was rather clumsy, providing an entire, large array of stock info I didn't want for my spreadsheets. And last week that MSN support died! I scarmbled to the web once again. I found a number of methods and picked an easy one that used yahoo's ichart query. It was slow, but seemed okay over the weekend, but then on Monday, I learned that it was pulling "historical" data and therefore did not provide today's prices, let alone up to date prices while the market is open... SIGH Again! Your solution looked promising, and inideed it is going to meet my needs!=) I could use hellp getting a 'Refresh' button working.
    THANKS AGAIN!

  • @vbaexpertonline8032
    @vbaexpertonline8032 Před 7 lety +1

    Excellent, I like it.

  • @bigfishpondhome1
    @bigfishpondhome1 Před 11 lety

    Yeah, I know. Just use a do loop or for each and step 200. Have you looked into Regex to split those lines, then just load them into an array and parse the final value in one hit. That is what I did. Just some food for thought. BTW, I love your Facebook page.

  • @philthomas1189
    @philthomas1189 Před 10 lety

    great tutorial. It may take me some time to learn exactly what all the code does. I sometimes get a timeout or application error on the line http.send but if i run the macro immediately after I don't.

  • @xzadeh
    @xzadeh Před 9 lety

    Great Post. Thanks,
    What version of excel are you using?

  • @marcelayeko4322
    @marcelayeko4322 Před 10 lety

    You sure know your stuff - great job; Thanks. Is there anyway/anywhere that I can download the VBA code?; would like to get a quick start in customizing my own portfolio.
    Thanks again

  • @bfox45
    @bfox45 Před 7 lety

    brett, great video, but is there a way to put categories on left side & symbols on top? thanks. bernie

  • @avrahammelamed9388
    @avrahammelamed9388 Před 7 lety

    Nice clip!

  • @stephenwahrenburg3672
    @stephenwahrenburg3672 Před 11 lety

    will do. thanx!

  • @Brendon184
    @Brendon184 Před 9 lety

    great video man. i had a problem opening up your spreadsheet with excel 2011 for mac it said activeX isn't supported. what do you recommend?

  • @ESnipezHD
    @ESnipezHD Před 7 lety

    Can you please tell me your colors setup for each function? Yours are awesome!

  • @vimalwebs
    @vimalwebs Před 10 lety

    Awesome!

  • @henriklinckhansen4918
    @henriklinckhansen4918 Před 8 lety

    Absolutely wonderful tutorial !! thx man :)
    Are you willing to create one more on how to get historical data?
    Would be over the moon, if I could also collect data from other dates than the current one :D :D :D

  • @SHEUNGKUNGHUI
    @SHEUNGKUNGHUI Před 9 lety

    The excel book downloaded work very well. Thanks. May I ask if I can retrieve historical financials e.g. Rev, Gross Profit, Net Income, eps for all stocks for the past 4 to 8 quarters from Yahoo Finance? If yes, what is the command and the tags? Thanks

  • @RumahHaura
    @RumahHaura Před 7 lety +1

    Hi Brett, you are so genius. but i i have problem. i follow all of your step, but i only can pull data on Row 2. next row still empty. can you give the solution?
    thanks

  • @nathanbeck5698
    @nathanbeck5698 Před 8 lety +2

    For some reason the lines are not separating for me. I can get it to work on a single line, but the last columns has the number plus the what should be on the next row, in this case "USB" . I've checked my code against the tutorial code and it is identical. Any Ideas?

  • @manu120576
    @manu120576 Před 10 lety

    Hey this is fantastic and thanks for the tutorial. The only problem I am having is that it crashes if it has to loop over 150 rows or quotes. Any advice?

  • @satishtlkumar6087
    @satishtlkumar6087 Před 8 lety

    Nice one

  • @sherryg6319
    @sherryg6319 Před 10 lety

    is it possible for get the price for certain date not just today?
    waiting for your helps ! thank you in advance

  • @hogakala07
    @hogakala07 Před 6 lety

    Hey DontfretBrett I really loved this video and the functioning model you had built. Which is true genius! Then yahoo just discontinued. :( Would look forward to your alternate solutions Mr. Genius. By any chance you would know if Microsoft has restored the excel connect to MSNBC stocks? That was discontinued as well few months back.

  • @tthinker9897
    @tthinker9897 Před 3 lety

    Found a very easy work around. Create an Excel stock spreadsheet with the same list of stocks you're watching or invested in. Create the identical Watchlist in Yahoo Finance. Export the Yahoo watchlist to a download file and open it. It will not be in Excel format, but that's ok. Copy the column of current prices from the Yahoo Quotes spreadsheet into your Excel spreadsheet and paste Links. Current prices will populate. Just did this, so don't know if I can automate the updates or if I must do it manually each time. Very new to this, so any help welcome.

  • @axezen1614
    @axezen1614 Před 7 lety

    Thanks a lot.
    Without using refresh botton, how can I have the vb refresh automaticly by itself right after the excel is opened?

  • @julianzhao7677
    @julianzhao7677 Před 10 lety

    pretty cool !

  • @balkiblogs5615
    @balkiblogs5615 Před 8 lety

    Hi,
    First, thank you very much for sharing this good video. I'm facing strange issue. I'm getting "N/A" for all values if my inputs are NSE listed stocks. Eg. LT.NS, MOTHERSUMI-EQ.NS etc. Any idea? Thank you.

  • @adammontgomery551
    @adammontgomery551 Před 10 lety

    Hello Brett, if I were to want to expound upon my chart and import other things from the gummy-stuff, how do I add more "special tags"?

  • @christophebernard2954
    @christophebernard2954 Před 9 lety

    Hello, very nice article simply, clear, well explain exactly what i want .. Good jobbbb :) Good continuation ..just a question is it possible to delete the button and a timer to refresh every 5 minutes for example ? if yes How ?! thanks

  • @PGore9894
    @PGore9894 Před 9 lety

    Hey Brett: Is there anywhere that we can see the entire VBA code? Thx. Excellent tutorial.

  • @lancefree7544
    @lancefree7544 Před 10 lety +1

    It is a great video and I like it so much.
    I have one question, how don't I have WinHttpRequest when I write a line such as Dim Http As New WinHttpRequest. I don't see WinHttpRequest in my object. If I don't have the object, How do I add it up? Thanks.

  • @Spread_Humanity_
    @Spread_Humanity_ Před 11 lety

    Great job Brett ,try with bac+fb+vxx ,the fb name filed has seperated by coma i.e "facebook,inc" hence at this particular record ....price,high and low are misplaced and this record occupies another coloumn out of table format.

  • @alex741321
    @alex741321 Před 8 lety +1

    For mac user's winhttp services are not included, one has to use ActiveSheet.QueryTables.add(...). Thought it would help.