How To Connect Excel to Access for Dynamic Reports

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024
  • In this video I show you my favorite method for linking an Excel workbook to a query in Access so you can analyze your data using flexible tools like pivot tables and pivot charts. This is very helpful to users who prefer to crunch data in Excel vs Access's canned reports and provides an easy way to use all of the powerful analytical tool in Excel.
    If you would like a copy of the source code and files I use in this video, please visit the link below to become a channel member for about the price of a cup of coffee.
    buymeacoffee.c...
    If you would like to view the video where I cover how to make your files self-install, please click the link below:
    • How To | Self Installi...
    Thanks for watching!

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

  • @kennethwdc
    @kennethwdc Месяц назад

    This is just what I needed. Well thought out video presentation. The right mix of typing out code and using code that you've already typed, as well as including trial and error.

  • @TheRealWillM
    @TheRealWillM Месяц назад

    Thanks so much, very timely video as it so happens

  • @RandalSullivan-n4b
    @RandalSullivan-n4b Месяц назад

    Great video and interesting way to easily enhance the analysis of data.

  • @nibgrahi5651
    @nibgrahi5651 Месяц назад +1

    Taking query filter conditions from a Form can be done by simply putting form object names in the criteria in query design view. So why this VBA approach? Any specific advantage?

    • @advantageapplications5712
      @advantageapplications5712  Месяц назад +2

      Great question, and you are correct... if we just wanted to run the query and pass it parameters from the form, we could reference the form's controls right in the query. But, for this use case... needing to open an Excel workbook that pulls data from the query that it is linked to, we need to change the query definition itself, otherwise the Excel data doesn't reflect what the user specified in the parameters form.
      I hope that makes sense and thanks for checking out my video!!

  • @bumpersmith
    @bumpersmith Месяц назад

    Why didn't you use late binding if this is to be distributed?

    • @advantageapplications5712
      @advantageapplications5712  Месяц назад

      Hey, thanks for watching! I like to use early binding (when I can) to get the benefit of intellisense.

    • @bumpersmith
      @bumpersmith Месяц назад

      @@advantageapplications5712 Ok, I agree but shouldn't it be late binding when done so when distributing the DB there will be no worries if the user is setup for early binding?