FlexPro
HistoryBase
Engineering
Training
Downloads
FlexPro-Support
Wissen
Community
Über Uns
Referenzen
Jobs
Allgemeiner Kontakt
Händlerverzeichnis
FlexPro-Support
DE
EN
FR
Placeholder
Produkte und Lösungen
Support und Downloads
Unternehmen
Magazin
Kontakt
Sprache
MyWeisang

Account Einstellungen

Topic

Import data from an excell workbook

Startseite ' Community ' Automation and VBA ' Import data from an excell workbook

Anzeigen von 3-Stellen - 1 bis 3 (von insgesamt 3)
  • Autor
    Beiträge
  • #34991
    Nicolas Beaupré
    Teilnehmer

    I got an excell workbook “blast2” witch is inserted in my database. I want to access the data in it or import it in DataSets. This workbook as more than one sheet. I’ve put an exemple of that workbook in attachment.

    I’ve created an ExcelFolder object that way and it refer to the correct element.
    [code]Dim fExcell As ExcelFolder
    Set fExcell = ActiveDatabase.RootFolder.Object(“blast2”, fpObjectTypeExcelWorkbook)[/code]

    How can I access, for exemple, the data in the C:5 cell of the tir1 sheet ?

    #34993
    Nicolas Beaupré
    Teilnehmer

    I got an excell workbook “blast2” witch is inserted in my database. I want to access the data in it or import it in DataSets. This workbook as more than one sheet. I’ve put an exemple of that workbook in attachment.

    I’ve created an ExcelFolder object that way and it refer to the correct element.
    [code]Dim fExcell As ExcelFolder
    Set fExcell = ActiveDatabase.RootFolder.Object(“blast2”, fpObjectTypeExcelWorkbook)[/code]

    How can I access, for exemple, the data in the C:5 cell of the tir1 sheet ?

    #34992
    Bernhard Kantz
    Teilnehmer

    You can create a [b]ExcelDataLink[/b].

    In VBA you could use this code:
    [code]
    Dim oExcel As ExcelFolder
    Set oExcel = ActiveDatabase.RootFolder.Object(“blast2”, fpObjectTypeExcelWorkbook)
    With oExcel.Add(“data”, fpObjectTypeExcelDataLink)
    .YComponent = “tir1!C5”
    .YLineByLine = True
    ‘.Evaluate
    .Update
    End With
    [/code]
    support@weisang.com

Anzeigen von 3-Stellen - 1 bis 3 (von insgesamt 3)
  • Du musst angemeldet sein, um auf dieses Thema antworten zu können.