Text Box formatting Access 2003

C

cc

Hi,

I have the following text box in a report. I have it formatted for standard
2 decimal places, but I'm getting many more decimal places displayed.

="Rent Due on " & GetOpeningDate() & ": " & [Rent]

How can I format the field [Rent]?

Thank you.

cc
 
C

cc

I was able to locate a response from an earlier post and it worked!! Thanks.

="Rent Due on " & GetOpeningDate() & ": " & Format([Rent],"Standard")

cc
 
B

boblarson

Just a quick FYI -

Formatting at table level doesn't carry over to reports and most of the time
formatting in queries doesn't either. It's always good to format "at the
last moment" to ensure you are getting what you want.
--
Bob Larson
Access World Forums Super Moderator
Utter Access VIP
Tutorials at http://www.btabdevelopment.com
__________________________________
If my post was helpful to you, please rate the post.


cc said:
I was able to locate a response from an earlier post and it worked!! Thanks.

="Rent Due on " & GetOpeningDate() & ": " & Format([Rent],"Standard")

cc

cc said:
Hi,

I have the following text box in a report. I have it formatted for standard
2 decimal places, but I'm getting many more decimal places displayed.

="Rent Due on " & GetOpeningDate() & ": " & [Rent]

How can I format the field [Rent]?

Thank you.

cc
 

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

Top