No report field formatting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report where the source is a query containing a union. The data
field values print but show no formatting. I have set the format in the
report fields to their proper type (currency, percentage, etc.) but they seem
to be ignored.

Is there a way to set the field formatting. I have made sure the field
formatting is set in the tables and in the query components, too, but still
no luck.

Thanks for any help you can provide.

Regards,
Frank
 
The union query may be creating columns as text where you expect them to be
numeric. To check, view your report's record source in datasheet view and
see if your columns are left or right aligned. Only right-aligned columns
can use currency, ... You can set the control source of the text box to
=Val([YourField])
Make sure you also change the name of the text box so it isn't the name of
the field. You should be able to then set the format for numerics.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top