VBA & OpenAI Tutorial: Do anything in excel with an openai powered VBA userform

Поделиться
HTML-код
  • Опубликовано: 25 авг 2024

Комментарии • 6

  • @Aryan-oe8cn
    @Aryan-oe8cn 2 месяца назад

    Hii ...for some reason it is not working for me...i have downloaded the excel file from the link and added my API key, it isn't showing any error but no output as well.
    Can you please help

  • @garysterling9568
    @garysterling9568 10 месяцев назад

    Hi Hitch, First off thank you very much for this very interesting video. My question is, Do I need to obtain a "API Key" to make the VBA work," (To insert where indicated) If so, where do I get it. Thanks form, Ol'Canadian Guy

    • @Hitchon
      @Hitchon  10 месяцев назад

      Hey so you can use this link and would need to create an account here
      openai.com/product
      I have an old video where in the first minute I show how to get the api key once you have an account opened
      m.ruclips.net/video/YblldhYf5vE/видео.html

    • @Hitchon
      @Hitchon  10 месяцев назад

      Yes you will need to create an account and insert your own api key for everything to work

  • @user-kp4zo9hn7e
    @user-kp4zo9hn7e 10 месяцев назад

    Theoretically, couldn't you add functionality to import data?

    • @Hitchon
      @Hitchon  10 месяцев назад +1

      Hi yes definitely possible would involve some extra work and depends largely where the data is. Some options would include
      (1) Web Query. Fetch data from some websites. Example:
      With ActiveSheet.QueryTables.Add(Connection:= _
      "URL;www.example.com", Destination:=Range("$A$1"))
      .Refresh
      End With
      (2) API requests.
      (3) SQLserver database connection
      (4) ODBC api connection
      There’s definitely many other ways and use cases combining web data + openai. One thing I thought of was like taking LinkedIn data and openai to make some excel sales bot.
      A lot of big sites also have APIs which could make it easier.
      Hope this helps