I was afraid that was the answer. I gotta say, I really HATE the
Access report writer, so I avoided it like the plague while I was
trying to complete this project. I've gotten a bit better at it but I
really think it's user-hostile.
There is a pay-off between user-friendliness and configurability. The
report designer will create a huge variety of different types of
documents, but that versatility comes with a comlpex user interface.
FWIW, the easiest way to achieve what you want would be to group-select
all the relevant text boxes and fix the Format property in one go.
I did end up exporting a bunch of
data to Excel because I'm so much faster at formatting in it. Plus it
has a lot more formatting features than Access seems to.
Arguable: it's much harder to map Excel object to real-life dimensions on
the paper. There is a long cycle of print-review -- redraw-columns
getting a decent paper output from Excel. The spreadsheet, of course,
would be much more flexible for any post-query analysis and summary etc
etc.
I just was hoping there was some cool feature that I hadn't come
across when I was looking.
As long as you don't need the numbers in the final destination (wherever
that may be), then you can always take charge of the formatting yourself:
SELECT FORMAT(SUM(FinalCost),"$00.00") AS FinalCostTotal,
FORMAT(AVG(TaxPaid), "$00,000.00") AS MeanTaxPaid,
etc etc
or even
SELECT CCUR(SomeMoneyAmount), etc etc
and I guess, without testing, that might even survive transfer to another
app like Word or Excel.
As a matter of interest, do you get on any better in this regard with
other report writers like Crystal or the dotNet data grid, etc?
B Wishes
Tim F