473,425 Members | 1,947 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,425 software developers and data experts.

Curious about Access 12 Report Formatting

I was curious in regards to Access 12; specifically more fluent report
formatting.

I'm an average user, but from my end, I find more and more need for
cleaner reports....and do not always want to merge with Word. Although
I believe my reports are very clean and well laid out, they always tend
to look more like an office form, with underlined spaces that require
to be filled in.

As an Example, I just built a report for Wills, and a lot of text
fields need to be placed into the report within a lot of standard text.
Most of the text boxes need to be underlined and bold, this presents
the form look, I don't want. As I do not know how big a persons name
will be, I have to ensure I leave enough space to accommodate for
this...which not always gives the clean consecutive feel to the
paragraph(s), and sentence structures formatting which could be
achieved in Word, i.e.

I _____Billy Bob Bloggins______________________, declare this.....
vice

I Billy Bob Bloggins, declare this.....

Additionally, I can live without word wrap (would be nice, but I
appreciate the difficulties in this), but the need for Full
Justification is always an issue. I know there are ways to achieve
this (Steven Lebans), but is would be nice to have this incorporated
directly in Access.

Anyway, I was just wondering if some of these issues have been
considered in the new Access version.

Cheers,

Dave

Dec 9 '05 #1
6 1571
In message <11**********************@z14g2000cwz.googlegroups .com>, Dave
<da**********@gmail.com> writes
I _____Billy Bob Bloggins______________________, declare this.....
vice

I Billy Bob Bloggins, declare this.....


You can do that by defining text variables to hold boilerplate text then
concatenating the variables in the report. I think that will do what you
want, and it will work in current versions of Access.

If you decide to try this take a look at the difference in the way the
"&" and "+" operators work for concatenation. The difference can be
quite useful at times.
--
Bernard Peek
London, UK. DBA, Manager, Trainer & Author.

Dec 9 '05 #2
Concatenating like this: ClientNames: ([GivenName] & " "+[Surname])

But I'm still not sure how to apply this to make my report format
flow better, when I cannot guarantee the size of a persons name; some
names could be 10 characters, while others could be 30...

How could I make the paragraph flow, without large spaces to
accommodate variable name sizes? How will the paragraph stretch using
just the above?

Is there an example I could review?

Cheers,

Dave

Dec 9 '05 #3
In message <11**********************@g49g2000cwa.googlegroups .com>, Dave
<da**********@gmail.com> writes
Concatenating like this: ClientNames: ([GivenName] & " "+[Surname])
Yup!
But I'm still not sure how to apply this to make my report format
flow better, when I cannot guarantee the size of a persons name; some
names could be 10 characters, while others could be 30...
Concatenation tricks help if, for instance, you want to include a middle
initial if there is one. If you concatenate the name, one space each
side of the name and the boilerplate text you don't have any extra
spaces in the paragraph. You end up with just one text box the full
width of the page with all of the text of the paragraph in it.

How could I make the paragraph flow, without large spaces to
accommodate variable name sizes? How will the paragraph stretch using
just the above?

Is there an example I could review?


None of my work is online.

--
Bernard Peek
London, UK. DBA, Manager, Trainer & Author.

Dec 10 '05 #4
Sorry, I'm still unsure of how to apply your suggestion correctly.

Do I add all the text for a paragraph within the one text field?? i.e.:

([GivenName] & " "+[MInitial]& " "+[Surname])

Would look like this:
|
I, ([GivenName] & " "+[MInitial]& " "+[Surname]), agree to be bound by
the provisions of this Agreement and agree to determine by this
Agreement, in the event we cohabit and later.....blah, blah, blah. And
we contiune here.....

How do I add the other text to the para...if you could further clarify,
that would be most helpful.

Your patience's is appreciated!

Dec 10 '05 #5
In message <11*********************@g14g2000cwa.googlegroups. com>, Dave
<da**********@gmail.com> writes
Sorry, I'm still unsure of how to apply your suggestion correctly.

Do I add all the text for a paragraph within the one text field?? i.e.:

([GivenName] & " "+[MInitial]& " "+[Surname])

Would look like this:
|
I, ([GivenName] & " "+[MInitial]& " "+[Surname]), agree to be bound by
the provisions of this Agreement and agree to determine by this
Agreement, in the event we cohabit and later.....blah, blah, blah. And
we contiune here.....
That's about it. You need to include all of the text for that paragraph.
That will make sure that there are no gaps either side of the places
where you insert the variable data

For clarity I would create some text variables to carry the boilerplate
text. So in this case you would have some text before the name, then
some more after the name. In my applications I would write some code to
do the concatenation. I would write a function that accepts the names
and the other text and concatenates them. That way I could easily use
the same code in different projects. The function would include some
code like this:

-------------------------------------------------------------------------
------

dim ForeMatter, AfterMatter, Para1 string

ForeMatter= "I, "

AfterMatter=", agree to be bound by the provisions of this Agreement and
agree to determine by this Agreement, in the event we cohabit and
later.....blah, blah, blah."

Para1=Forematter + [GivenName] +" " + [Minitial]&" " + [Surname]+
AfterMatter

-------------------------------------------------------------------------
---------

This takes you down to the end of the paragraph containing your
variables.

When the names are printed it is possible that the number of printed
lines will change. Long names might add an extra line to the paragraph.
So you need the following paragraph to print one line further down the
page. If you set the Can Grow property of the text box to true it will
be able to expand. That should move the following fields further down
the page.
How do I add the other text to the para...if you could further clarify,
that would be most helpful.


Following text boxes can be labels or more text boxes populated from the
database. If you intend to write many similar reports then it is worth
trying to find ways to automate parts of it by using code.

--
Bernard Peek
London, UK. DBA, Manager, Trainer & Author.

Dec 12 '05 #6
Thanks for all your help! I think that I'll review info on Word
Merges; they may apply and simplify my reporting needs.

Again, your patience's has been refreshing!

Have a safe and wonderful Christmas / Holiday Season!

Dec 13 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Richard | last post by:
Hi, I have a form that take some time to load due to many comboboxes and at least 8 subforms. When I filter or sort the main form I get an error message and then Access shuts down. They ask if...
8
by: Mike MacSween | last post by:
tblCourses one to many to tblEvents. A course may have an intro workshop (a type of event), a mid course workshop, a final exam. Or any combination. Or something different in the future. At...
3
by: (Pete Cresswell) | last post by:
I'm doing a booklet for a class reunion. Got all the data and everybody's life history in a little MS Access app and now it's time to get the booklet ready to go to the printer's. I have a...
5
by: Andrew Chanter | last post by:
Does anyone know a way you can use conditional formatting to create a banded style view as is commonly seen on the internet. (In othe words the first record appears on a gray background, the 2nd...
0
by: hank755_ca | last post by:
Hello, I have a report in Access which I want to export to Excel with the formatting intact. The formatting is rather complex with several headings and fields with borders. I have tried the...
2
by: dcyale | last post by:
I have a report with the following paragraph: ="This BA presents a " & & " determination for the " & & " and associated habitat. We would appreciate you processing the biological opinion by " &...
8
by: babyangel43 | last post by:
Hello, I have a query set up in Access. I run it monthly, changing "date of test". I would like this query to be merged with a Word document so that the cover letter is created in Word, the fields...
3
by: smuir | last post by:
I am working with a basic access form for a payroll system and need to modify it such that if an employee worked overtime, then their overtime payrate and hours show up on the report below their...
16
by: Neil | last post by:
I posted a few days ago that it seems to me that the Access 2007 rich text feature does not support: a) full text justification; b) programmatic manipulation. I was hoping that someone might...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.