$ needs to go away

D

Dan Goble

I got a report that already has the $______
My field is currency and diplays $500.00 which is perfect except I dont need
both $ signs
If I dont use the field the $ still must be there for the contract to be
valid so I need it changed on the control that 500.00 id transparently
placed over the $_______

Thanks
Dan
 
R

Rick B

Then leave the literal "$" and change the formatting of the field to
numbers, instead of currency.

Of, change the whole thing to be an "if" statement that will either print
the value formatted as currency, or will print the literal "$ ________".
 
M

Marshall Barton

Dan said:
I got a report that already has the $______
My field is currency and diplays $500.00 which is perfect except I dont need
both $ signs
If I dont use the field the $ still must be there for the contract to be
valid so I need it changed on the control that 500.00 id transparently
placed over the $_______


Choose something other than the Currency format. You can
always use a custom format if you can't find a named format
that does what you want.
 
F

fredg

I got a report that already has the $______
My field is currency and diplays $500.00 which is perfect except I dont need
both $ signs
If I dont use the field the $ still must be there for the contract to be
valid so I need it changed on the control that 500.00 id transparently
placed over the $_______

Thanks
Dan

=" I got a report that already has the $ " & Format([YourField],
"#,##.##")

or

= "I got a ..... " & Format([Yourfield],#,#0.00")
whichever suits you.
 
D

Dan Goble

Jeez,
All three suggestions work perfectly
Thanks I learned a lot on this one

Dan
 

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