Access VBA | Working with Query Definitions

Поделиться
HTML-код
  • Опубликовано: 6 сен 2024
  • Inside of Access, we store data in a structured format so that we can easily retrieve it when needed. When it comes to retrieving, creating, and modifying data we use scripts called queries to execute those instructions. Inside of VBA, we can create those queries and add additional information to them so that we can easily customize them to meet our unique needs. In this video, we will cover the QueryDefinition object, how to create them, how to modify them, and how to grab the data that they return from them.
    Video Resources:
    --------------------------------------------------
    github.com/are...
    Resources:
    --------------------------------------------------
    Facebook Page: / codingsigma
    Facebook Group: / sigmacoding
    GitHub Sigma Coding: github.com/are...
    Support Sigma Coding:
    --------------------------------------------------
    Patreon: / sigmacoding
    Amazon Associates: amzn.to/3bsTI5P **
    Related Topics:
    --------------------------------------------------
    Title: Access VBA | Introduction
    Link: • Access VBA | Introduction
    Title: Access VBA | Working With Query Definitions
    Link: • Access VBA | Working w...
    **Amazon Associates Disclosure:
    --------------------------------------------------
    I am a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com. One of the ways I support the channel is by using Amazon Associates to earn fees on purchases you make. That means when you use the link above, it will track any purchases made from that link and give a small portion of it to the Sigma Coding. I love this approach because it allows you to do what you're already doing (shopping) but also helps support the channels you care about. Also, it makes it where I can invest that revenue to help improve and grow the channel.
    Tags:
    --------------------------------------------------
    #VBA #Access #QueryDefinitions

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

  • @hackish1
    @hackish1 Год назад +1

    I think in your IsInCollection function, it makes sense to call exit function as soon as the value is found. The function will then run on average 50% faster (if you prefer the math analysis, it goes from O(n) to O(n/2). In practice, even faster as you don't need to have the WasFound variable on the stack, and you no longer need to run the final exiting the searching loop implies it was not found. I respect that in teaching, sometimes lots of verbosity is valuable too, so this is just a different approach.

  • @tantegreta
    @tantegreta 2 года назад

    Really good stuff, concise and well structured, really helped me with my project, thanks!

  • @janezklun
    @janezklun 2 года назад

    Fine, useful tutorials, please some more vba videos, thank you, Cheers

  • @jagc2107
    @jagc2107 3 года назад

    You're a master!!!!!

  • @MohamedNasserOfficial
    @MohamedNasserOfficial 3 года назад

    Great Work .. Really Thank You

  • @Tahir_Ali
    @Tahir_Ali 2 года назад

    I cannot get passed the "Compile Error: Expected user-defined type, not project. "