How I change the format 0 to -

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

Guest

In access I cant change the cero format in a report, shows 0, and i need in
the cero spaces shows " - " or blank
Please excuse my english
 
Use the Format property of the textbox -- it can have up to four items in
it:

x;x;x;x

First value is how to format positive numbers. Second value is how to format
negative numbers. Third value is how to format zero value. Fourth value is
how to format Null value.

So, for example:

0.00;-0.00;-;"empty"
 
In access I cant change the cero format in a report, shows 0, and i need in
the cero spaces shows " - " or blank


Set the text box's Format property to something like:

0.00;-0.00;" - "
 

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

Similar Threads

Negative value 3
Cancel InputBox 6
Exporting Access Report to Excel 3
Numbers 1
data truncates when converting .csv to .xls 5
Line Spacing 1
show balance 2
Help with formula 4

Back
Top