Formatting tables imported via a report

狂风中的少年 提交于 2019-12-24 08:18:16

问题


I have a few reports that I get every day that have to be imported into a database, MS Access, in a particular way. The problem is, the way the reports are laid out makes it difficult to do so.

 Program: Name A
     Date | Description | Other | Stuff
     Date | Description | Other | Stuff 
Program: Name B
     Date | Description | Other | Stuff
     Date | Description | Other | Stuff   
Program: Name C
     Date | Description | Other | Stuff
     Date | Description | Other | Stuff           

Basically, what I would like it to do is look like this.

Program: Name A | Date | Description | Other | Stuff
Program: Name A | Date | Description | Other | Stuff
Program: Name B | Date | Description | Other | Stuff
Program: Name B | Date | Description | Other | Stuff
Program: Name C | Date | Description | Other | Stuff
Program: Name C | Date | Description | Other | Stuff

I've played around with a couple different solutions, but so far nothing has done the job.

Thanks for any help!


回答1:


Something like:

Dim xl As New Excel.Application
Dim ws As Excel.Worksheet
Dim rng As Excel.Range
Dim rs As DAO.Recordset
Dim db As Database

Set db = CurrentDb

''Run once
''s = "create table reporttable (id counter primary key, program text, " _
'' & "pdate text, [description] text, other text, stuff text)"
''db.Execute s, dbFailOnError

Set rs = db.OpenRecordset("ReportTable")
xl.Visible = True ''dev

Set ws = xl.Workbooks.Open("z:\docs\report.xlsx").Sheets("Sheet1")
Set rng = ws.UsedRange

For i = 1 To rng.Rows.Count
    If rng.Cells(i, 1) Like "Program*" Then
        progdat = rng.Cells(i, 1)
    Else
        rs.AddNew
        rs!program = progdat
        rs!pdate = rng.Cells(i, 1) ''Text, because you cannot trust reports
        rs!Description = rng.Cells(i, 2)
        rs!Other = rng.Cells(i, 3)
        rs!Stuff = rng.Cells(i, 4)
        rs.Update
    End If
Next
Set rs = Nothing
Set rng = Nothing
ws.Parent.Close
Set ws = Nothing
xl.Quit
Set xl = Nothing


来源:https://stackoverflow.com/questions/14285106/formatting-tables-imported-via-a-report

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!