I need to draw a table within report, I tried to use line (from controls in design tab in design view) and I it works , I have tables in report . but I need to export my report in word , and pdf . For pdf I can see tables that I created, but in word I dont have tables. Are there other ways to create tables within report?
Asked
Active
Viewed 1,474 times
0
-
1You probably want to export the data to Word, and then use VBA to change the `activedocument.tables` object properties in the word document from Access. For example, to create the border tables, `.borders.enable = true` property with the above object will create table around your data. Use `.columns(x).width` to set column widths. – geeFlo Apr 12 '17 at 19:07
2 Answers
1
Once you have added your fields into your report, if you select the ones you want in a table, you can select stacked or tabular in the 'Arrange' tab in 'Design view'. This will arrange the fields in columns or rows. You can then add labels and text boxes wherever you want in relation to the table you have created.
You can also change the format of the table by accessing the property sheet for each or multiple table "cells" and changing gridline properties in the 'Format' tab.

TDolph
- 49
- 5
-
1thanks alot, I already tried it.it works when I creat report in access. but problem is , now I want to export report in word (RTF)[EXternal Dat tab->export section-> more-> to word which gives in RTF] . but then in word; I dont have those lines, I have just data without tables . – Mfanoosh Apr 12 '17 at 15:01
-
Would it be possible for you to export it into Excel and then add the Excel spreadsheet into word document? – TDolph Apr 13 '17 at 06:50
0
Check out the YouTube video below. It does exactly what you want.
https://www.youtube.com/watch?v=-xqk8-dRwBY
Also, check out this link, to see how to save a Report to a PDF.

ASH
- 20,759
- 19
- 87
- 200
-
1thanks alot.I exactly watched first video before writing a question. ´( I dont know who gave negetive grade but solution is not there). this video helps to draw table in report I also used that method to draw tables . but problem is when I export my report in word (RTF) then those line will be vanished. In pdf format i have those lines. – Mfanoosh Apr 12 '17 at 14:30