A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Setting Up & Running Reports
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Two and One Column Reports



 
 
Thread Tools Display Modes
  #1  
Old July 29th, 2009, 12:45 AM posted to microsoft.public.access.reports
Proposal Doctor[_2_]
external usenet poster
 
Posts: 24
Default Two and One Column Reports

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David
  #2  
Old July 29th, 2009, 04:44 AM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Two and One Column Reports

Why have you you chosen MS Access to create resumes? If you data is in
Access, consider using a merge to MS Word.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David

  #3  
Old July 29th, 2009, 04:28 PM posted to microsoft.public.access.reports
Proposal Doctor[_2_]
external usenet poster
 
Posts: 24
Default Two and One Column Reports

Thanks for the reply Duane.

I want to use Access because of the filters and sorts that I use to select
particular people and show selected information for them. Word Automation
has always been the backup solution but I have not wanted to go that way if I
could help it for any of the many resume formats that the application uses.
But if you think that that is the only way, then that's what I'll do next.


And if I am reading between the lines correctly, you are saying that this
cannot be done in Access. Am I right? It seems that all that is needed is a
way to determine when the text is being applied to the second page of any
person's resume.

Thanks again.

David

"Duane Hookom" wrote:

Why have you you chosen MS Access to create resumes? If you data is in
Access, consider using a merge to MS Word.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David

  #4  
Old July 29th, 2009, 05:30 PM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Two and One Column Reports

I think you can accomplish what you want by using subreports. Each subreport
can have its own column setup. Keep in mind that columns in subreports work
best when displayed across then down. There are ways around this but they
take some effort.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

Thanks for the reply Duane.

I want to use Access because of the filters and sorts that I use to select
particular people and show selected information for them. Word Automation
has always been the backup solution but I have not wanted to go that way if I
could help it for any of the many resume formats that the application uses.
But if you think that that is the only way, then that's what I'll do next.


And if I am reading between the lines correctly, you are saying that this
cannot be done in Access. Am I right? It seems that all that is needed is a
way to determine when the text is being applied to the second page of any
person's resume.

Thanks again.

David

"Duane Hookom" wrote:

Why have you you chosen MS Access to create resumes? If you data is in
Access, consider using a merge to MS Word.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David

  #5  
Old July 29th, 2009, 06:30 PM posted to microsoft.public.access.reports
Proposal Doctor[_2_]
external usenet poster
 
Posts: 24
Default Two and One Column Reports

(Hopefully, this isn't posted twice.)

Thanks again.

I am already using one subreport for the jobs (right 2/3, page one). The
problem is formatting page 2 and subsequent pages to be one column. This
would require knowing when the right side of page one is full of text, for
example when line 80 is reached. Then, page two would continue as
left-justified text and one column with any additional job descriptions.

Thinking aloud: If I copy all the job descriptions into a temp table, delete
all the text down to a mark based on the number of lines on the right side of
page one, I suppose I could use a second subreport for this text. How does
that sound?

The problem here is handling groupings, the jobs break at the end of each
description and 80 lines is not always the breakpoint. Is there a way to know
where the breakpoint is made? Is that information stored in the report?

David

"Duane Hookom" wrote:

I think you can accomplish what you want by using subreports. Each subreport
can have its own column setup. Keep in mind that columns in subreports work
best when displayed across then down. There are ways around this but they
take some effort.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

Thanks for the reply Duane.

I want to use Access because of the filters and sorts that I use to select
particular people and show selected information for them. Word Automation
has always been the backup solution but I have not wanted to go that way if I
could help it for any of the many resume formats that the application uses.
But if you think that that is the only way, then that's what I'll do next.


And if I am reading between the lines correctly, you are saying that this
cannot be done in Access. Am I right? It seems that all that is needed is a
way to determine when the text is being applied to the second page of any
person's resume.

Thanks again.

David

"Duane Hookom" wrote:

Why have you you chosen MS Access to create resumes? If you data is in
Access, consider using a merge to MS Word.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David

  #6  
Old July 29th, 2009, 07:01 PM posted to microsoft.public.access.reports
Duane Hookom
external usenet poster
 
Posts: 7,177
Default Two and One Column Reports

That's where things get complex and messy. Personally, I would create a Word
merge file from the appropriate Access records or possibly use automation.
IOW, I'm not about to take the time to create sample data, build test
report(s), and reply back with my results :-(

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

(Hopefully, this isn't posted twice.)

Thanks again.

I am already using one subreport for the jobs (right 2/3, page one). The
problem is formatting page 2 and subsequent pages to be one column. This
would require knowing when the right side of page one is full of text, for
example when line 80 is reached. Then, page two would continue as
left-justified text and one column with any additional job descriptions.

Thinking aloud: If I copy all the job descriptions into a temp table, delete
all the text down to a mark based on the number of lines on the right side of
page one, I suppose I could use a second subreport for this text. How does
that sound?

The problem here is handling groupings, the jobs break at the end of each
description and 80 lines is not always the breakpoint. Is there a way to know
where the breakpoint is made? Is that information stored in the report?

David

"Duane Hookom" wrote:

I think you can accomplish what you want by using subreports. Each subreport
can have its own column setup. Keep in mind that columns in subreports work
best when displayed across then down. There are ways around this but they
take some effort.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

Thanks for the reply Duane.

I want to use Access because of the filters and sorts that I use to select
particular people and show selected information for them. Word Automation
has always been the backup solution but I have not wanted to go that way if I
could help it for any of the many resume formats that the application uses.
But if you think that that is the only way, then that's what I'll do next.


And if I am reading between the lines correctly, you are saying that this
cannot be done in Access. Am I right? It seems that all that is needed is a
way to determine when the text is being applied to the second page of any
person's resume.

Thanks again.

David

"Duane Hookom" wrote:

Why have you you chosen MS Access to create resumes? If you data is in
Access, consider using a merge to MS Word.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David

  #7  
Old July 31st, 2009, 11:56 PM posted to microsoft.public.access.reports
Proposal Doctor[_2_]
external usenet poster
 
Posts: 24
Default Two and One Column Reports

Hi Duane,

I just wanted to say thanks again for suggesting that I use subreports to
solve this problem.

I originally had one but a second and separfate subreport was needed. I
forced the main report to show a full page of text and I then I put the
second subreport on the second page. I have to figure out how much text will
fit in the right-hand column of page one for each resume but the extra work
isn't that bad. Fortunately, I don't need to print hundreds of these fancy
resumes at a time.

Thanks again.

David

"Duane Hookom" wrote:

That's where things get complex and messy. Personally, I would create a Word
merge file from the appropriate Access records or possibly use automation.
IOW, I'm not about to take the time to create sample data, build test
report(s), and reply back with my results :-(

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

(Hopefully, this isn't posted twice.)

Thanks again.

I am already using one subreport for the jobs (right 2/3, page one). The
problem is formatting page 2 and subsequent pages to be one column. This
would require knowing when the right side of page one is full of text, for
example when line 80 is reached. Then, page two would continue as
left-justified text and one column with any additional job descriptions.

Thinking aloud: If I copy all the job descriptions into a temp table, delete
all the text down to a mark based on the number of lines on the right side of
page one, I suppose I could use a second subreport for this text. How does
that sound?

The problem here is handling groupings, the jobs break at the end of each
description and 80 lines is not always the breakpoint. Is there a way to know
where the breakpoint is made? Is that information stored in the report?

David

"Duane Hookom" wrote:

I think you can accomplish what you want by using subreports. Each subreport
can have its own column setup. Keep in mind that columns in subreports work
best when displayed across then down. There are ways around this but they
take some effort.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

Thanks for the reply Duane.

I want to use Access because of the filters and sorts that I use to select
particular people and show selected information for them. Word Automation
has always been the backup solution but I have not wanted to go that way if I
could help it for any of the many resume formats that the application uses.
But if you think that that is the only way, then that's what I'll do next.


And if I am reading between the lines correctly, you are saying that this
cannot be done in Access. Am I right? It seems that all that is needed is a
way to determine when the text is being applied to the second page of any
person's resume.

Thanks again.

David

"Duane Hookom" wrote:

Why have you you chosen MS Access to create resumes? If you data is in
Access, consider using a merge to MS Word.

--
Duane Hookom
Microsoft Access MVP


"Proposal Doctor" wrote:

I want to create resumes.

The first page of each resume needs to be two columns and will be based on a
table that contains single-field information for each person, like name,
title, college degrees, and affiliations. This information will form the
1/3-side of page one.

The first page also needs to display several jobs that the person has had.
For each job, I want to show the job title, date, and job description. This
information will form the 2/3 side of page one (right side of page). (This
information is stored in a second table.)


I want the second and all subsequent pages to be one column, and for the
jobs from page one to continue onto these pages and be left justified.

I can format page one just fine. But is there a way to tell Access that
pages two and on are left justified and one column?

Any ideas? Thanks.

David

 




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 Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:37 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.