Access VBA | Import Excel Tables to Access Pt. 2

Поділитися
Вставка
  • Опубліковано 16 жов 2024
  • In part two of our series, we will write the main section of our code that will loop through our list object and import the data into our newly defined Access Table. Additionally, we will walk through using the column headers in our table to specify the field we want to insert the value into. That way, we can replicate exactly how the table is structured in Excel and transfer it over to Access.
    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...
    Title: Access VBA | Import Excel Tables to Access Pt. 1
    Link: • Access VBA | Import Ex...
    Title: Access VBA | Import Excel Tables to Access Pt. 2
    Link: • Access VBA | Import Ex...
    **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 way 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) and 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 #ExcelTables

КОМЕНТАРІ • 6

  • @kabukijoe99
    @kabukijoe99 2 роки тому

    Good lessons

  • @SunilKumar-uv6zu
    @SunilKumar-uv6zu 3 роки тому

    Dear Alex ,
    what`s wrong with this code i am using powershell command to read text from image.. i have already installed tesseract 5.0 version and also added the path to environment variable..
    Sub ReadTextUsingShell()
    Dim myshell As Shell32.Shell
    Set myshell = New Shell32.Shell
    Dim argu As String
    Dim ImagetoReadPth, output As String
    ImagetoReadPth = "C:\Users\Sunil Kumar\OneDrive\Desktop\File\ImgtoRead.jpg"
    output = "C:\Users\Sunil Kumar\OneDrive\Desktop\File\1.txt"
    argu = "tesseract.exe " & ImagetoReadPth & " " & output & " -l eng"
    myshell.ShellExecute "powershell", vArgs:=argu
    End Sub
    Powershell window pops-up but do nothing and get closed..

  • @aminghanooni4240
    @aminghanooni4240 3 роки тому +1

    Why not using SQL Server instead of Access?

    • @navjotsingh2251
      @navjotsingh2251 3 роки тому

      Access is good for smaller data sets and it provides a better way to store data then just dumping it all into an excel file, and it provides an easy to use interface which has full access to VBA so it can be interoperable with all office365 applications. And it can act as a frontend to bigger databases like MySQL, SQL Server, PostgresSQL etc

  • @SunilKumar-uv6zu
    @SunilKumar-uv6zu 3 роки тому

    Dear Alex,
    Kindly help on my below query

  • @SunilKumar-uv6zu
    @SunilKumar-uv6zu 3 роки тому

    Dear Alex ,
    what`s wrong with this code i am using powershell command to read text from image.. i have already installed tesseract 5.0 version and also added the path to environment variable..
    Sub ReadTextUsingShell()
    Dim myshell As Shell32.Shell
    Set myshell = New Shell32.Shell
    Dim argu As String
    Dim ImagetoReadPth, output As String
    ImagetoReadPth = "C:\Users\Sunil Kumar\OneDrive\Desktop\File\ImgtoRead.jpg"
    output = "C:\Users\Sunil Kumar\OneDrive\Desktop\File\1.txt"
    argu = "tesseract.exe " & ImagetoReadPth & " " & output & " -l eng"
    myshell.ShellExecute "powershell", vArgs:=argu
    End Sub
    Powershell window pops-up but do nothing and get closed..