dbTalk Databases Forums  

Putting Data Into A Tabular Format

comp.databases.ms-access comp.databases.ms-access


Discuss Putting Data Into A Tabular Format in the comp.databases.ms-access forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
divventknaa
 
Posts: n/a

Default Putting Data Into A Tabular Format - 07-14-2010 , 12:45 PM






I am running a sort of plan on a page which covers several elements, Defects, Config Chane Requests
etc. which will have an associated query with each section that will underly sub forms on the
master form/report

The data will be filtered and return a sequential list of numbers as in:

12435
34654
34567
32456
87654

This will be similar for all subforms/reports

Is there a way through code to make the data display in text boxes or similar as:



12435 34654 34567 etc
34567 32456 87654 etc


This will save space and allow more data to be fitted on one page..

Thanks.. J


--
--------------------------------- --- -- -
Posted with NewsLeecher v3.9 Final
Web @ http://www.newsleecher.com/?usenet
------------------- ----- ---- -- -

Reply With Quote
  #2  
Old   
Salad
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-14-2010 , 12:58 PM






divventknaa wrote:
Quote:
I am running a sort of plan on a page which covers several elements, Defects, Config Chane Requests
etc. which will have an associated query with each section that will underly sub forms on the
master form/report

The data will be filtered and return a sequential list of numbers as in:

12435
34654
34567
32456
87654

This will be similar for all subforms/reports

Is there a way through code to make the data display in text boxes or similar as:



12435 34654 34567 etc
34567 32456 87654 etc


This will save space and allow more data to be fitted on one page..

Thanks.. J


As I don't follow your problem...forms? I don't know.

In a report you can use multicolumn reports. In the PageSetup button of
a report you can multicolumn across and down or down and across.

But this might not be what you mean.

Reply With Quote
  #3  
Old   
divventknaa
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-15-2010 , 03:43 PM



The word DOHHH! springs to mind.... the multicolumn on page setting will do the job perfectly.
Been playing with access for years and never even noticed the columns tab in the Page Setup menu...
LOL

Thanks


--
--------------------------------- --- -- -
Posted with NewsLeecher v3.9 Final
Web @ http://www.newsleecher.com/?usenet
------------------- ----- ---- -- -

Reply With Quote
  #4  
Old   
Salad
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-15-2010 , 07:18 PM



divventknaa wrote:

Quote:
The word DOHHH! springs to mind.... the multicolumn on page setting will do the job perfectly.
Been playing with access for years and never even noticed the columns tab in the Page Setup menu...
LOL

Thanks


One thing about multicolumns...the headers. This works for down then
across. For some reason it burps on across then down.

In a report query I might add a column like GroupIt.
GroupIt : 1.

Now every record has GroupIt of 1. Then I create a group on GroupIt via
sorting/grouping. Then I add put the headers in the GroupIt band. Then
set the RepeatSection for that group band to true. Now the headers flow
across per column.

Why it works for down/across and not across/down is beyond me.

Reply With Quote
  #5  
Old   
Marshall Barton
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-16-2010 , 01:21 PM



Salad wrote:
Quote:
One thing about multicolumns...the headers. This works for down then
across. For some reason it burps on across then down.

In a report query I might add a column like GroupIt.
GroupIt : 1.

Now every record has GroupIt of 1. Then I create a group on GroupIt via
sorting/grouping. Then I add put the headers in the GroupIt band. Then
set the RepeatSection for that group band to true. Now the headers flow
across per column.

You don't need a field in the query to do that. Just set
the Sorting and Grouping expression to a constant expression
such as =1 or ="Headers"

--
Marsh

Reply With Quote
  #6  
Old   
Salad
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-16-2010 , 02:19 PM



Marshall Barton wrote:

Quote:
Salad wrote:

One thing about multicolumns...the headers. This works for down then
across. For some reason it burps on across then down.

In a report query I might add a column like GroupIt.
GroupIt : 1.

Now every record has GroupIt of 1. Then I create a group on GroupIt via
sorting/grouping. Then I add put the headers in the GroupIt band. Then
set the RepeatSection for that group band to true. Now the headers flow
across per column.



You don't need a field in the query to do that. Just set
the Sorting and Grouping expression to a constant expression
such as =1 or ="Headers"

--
Marsh
Cool. I never noticed the word "Expression" in the Sorting/Grouping dialog.

Any idea on why Down/Across works but fails on Across/Down?

Reply With Quote
  #7  
Old   
Marshall Barton
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-16-2010 , 08:00 PM



Salad wrote:

Quote:
Marshall Barton wrote:

Salad wrote:

One thing about multicolumns...the headers. This works for down then
across. For some reason it burps on across then down.

In a report query I might add a column like GroupIt.
GroupIt : 1.

Now every record has GroupIt of 1. Then I create a group on GroupIt via
sorting/grouping. Then I add put the headers in the GroupIt band. Then
set the RepeatSection for that group band to true. Now the headers flow
across per column.


You don't need a field in the query to do that. Just set
the Sorting and Grouping expression to a constant expression
such as =1 or ="Headers"


Cool. I never noticed the word "Expression" in the Sorting/Grouping dialog.

Any idea on why Down/Across works but fails on Across/Down?

RepeatSection is invoked for new pages and Down then Across
columns, but to my way of thinking, it doesn't make sense
for RepeatSection to do to do anything for each new row in
Across then Down. It's kind of like each new column is a
pseudo group but each row is just more details. Not exactly
an explation and I guess the designer could have worked out
something for Across then Down, but they didn't, maybe only
because to was more complicated???

--
Marsh

Reply With Quote
  #8  
Old   
Salad
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-16-2010 , 08:48 PM



Marshall Barton wrote:

Quote:
Salad wrote:


Marshall Barton wrote:


Salad wrote:


One thing about multicolumns...the headers. This works for down then
across. For some reason it burps on across then down.

In a report query I might add a column like GroupIt.
GroupIt : 1.

Now every record has GroupIt of 1. Then I create a group on GroupIt via
sorting/grouping. Then I add put the headers in the GroupIt band. Then
set the RepeatSection for that group band to true. Now the headers flow
across per column.


You don't need a field in the query to do that. Just set
the Sorting and Grouping expression to a constant expression
such as =1 or ="Headers"


Cool. I never noticed the word "Expression" in the Sorting/Grouping dialog.

Any idea on why Down/Across works but fails on Across/Down?



RepeatSection is invoked for new pages and Down then Across
columns, but to my way of thinking, it doesn't make sense
for RepeatSection to do to do anything for each new row in
Across then Down. It's kind of like each new column is a
pseudo group but each row is just more details. Not exactly
an explation and I guess the designer could have worked out
something for Across then Down, but they didn't, maybe only
because to was more complicated???

--
Marsh
It does seem odd. If I specified 3 columns, then I'd expect 3 columns
of headers if 3 columns are filled in. It creates a header when
down/across when a new column is filled in so the routine has been
built. Since a column it's being filled in across/down, it's probably a
bug. I think most users, at least me, go down/across anyway (although
it's the second option in Page Setup) so it was probably forgotten
and/or a low priority for the Access development team.

Reply With Quote
  #9  
Old   
Marshall Barton
 
Posts: n/a

Default Re: Putting Data Into A Tabular Format - 07-17-2010 , 02:12 PM



Salad wrote:

Quote:
Marshall Barton wrote:

Salad wrote:

Marshall Barton wrote:

Salad wrote:

One thing about multicolumns...the headers. This works for down then
across. For some reason it burps on across then down.

In a report query I might add a column like GroupIt.
GroupIt : 1.

Now every record has GroupIt of 1. Then I create a group on GroupIt via
sorting/grouping. Then I add put the headers in the GroupIt band. Then
set the RepeatSection for that group band to true. Now the headers flow
across per column.


You don't need a field in the query to do that. Just set
the Sorting and Grouping expression to a constant expression
such as =1 or ="Headers"


Cool. I never noticed the word "Expression" in the Sorting/Grouping dialog.

Any idea on why Down/Across works but fails on Across/Down?


RepeatSection is invoked for new pages and Down then Across
columns, but to my way of thinking, it doesn't make sense
for RepeatSection to do to do anything for each new row in
Across then Down. It's kind of like each new column is a
pseudo group but each row is just more details. Not exactly
an explation and I guess the designer could have worked out
something for Across then Down, but they didn't, maybe only
because to was more complicated???


It does seem odd. If I specified 3 columns, then I'd expect 3 columns
of headers if 3 columns are filled in. It creates a header when
down/across when a new column is filled in so the routine has been
built. Since a column it's being filled in across/down, it's probably a
bug. I think most users, at least me, go down/across anyway (although
it's the second option in Page Setup) so it was probably forgotten
and/or a low priority for the Access development team.

I don't know, but Down then Across can just repeat the
header on a column transition. But Across then down does a
column transition on every detail so, in my mind, it's more
complex to figure out when and where the repeated header
should be applied.

--
Marsh

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.