Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Why are there inconsistencies in the display of zeroes in account.

As a CPA, I often use the accounting format with no dollar sign. Sometimes a
cell which contains a formula resulting in zero will show the zero as -
(which I prefer). Other times the zero will be shown as 0.00 or even (0.00).
Why the differences and how do I make it always show a zero as - ?

Thanks in advance for anyone's help.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 74
Default Why are there inconsistencies in the display of zeroes in account.

Sousixer,

To change a '0' to '-'. Highlight all of the cells you wish to format and
then go to Format cells (by right-clicking or Ctrl+1 or Format | Cells).
Select the Accounting category in the left side of the window. On the right
side, in the Symbol dropdown menu, choose None.

HTH.

"Sousixer" wrote:

As a CPA, I often use the accounting format with no dollar sign. Sometimes a
cell which contains a formula resulting in zero will show the zero as -
(which I prefer). Other times the zero will be shown as 0.00 or even (0.00).
Why the differences and how do I make it always show a zero as - ?

Thanks in advance for anyone's help.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Why are there inconsistencies in the display of zeroes in account.

My first guess would be you don't really have a 0 in that cells that display
0.00

Increase the DP out a ways. You might have .00000123 or similar.

Accounting format will always display that as 0.00

You may have to do some ROUNDing in your formulas to get rid of the
..00000123


Gord Dibben MS Excel MVP

On Fri, 26 Feb 2010 09:49:03 -0800, Sousixer
wrote:

As a CPA, I often use the accounting format with no dollar sign. Sometimes a
cell which contains a formula resulting in zero will show the zero as -
(which I prefer). Other times the zero will be shown as 0.00 or even (0.00).
Why the differences and how do I make it always show a zero as - ?

Thanks in advance for anyone's help.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Why are there inconsistencies in the display of zeroes in account.

It's because you don't have zero in the cell, but it's less than 0.005.
Excel is rounding this to 0.00 as you requested in your format. To get the -
displayed, round your calculations to 2 decimal places.

Regards,
Fred

"Sousixer" wrote in message
...
As a CPA, I often use the accounting format with no dollar sign.
Sometimes a
cell which contains a formula resulting in zero will show the zero as -
(which I prefer). Other times the zero will be shown as 0.00 or even
(0.00).
Why the differences and how do I make it always show a zero as - ?

Thanks in advance for anyone's help.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default Why are there inconsistencies in the display of zeroes in account.

"Sousixer" wrote:
I often use the accounting format with no
dollar sign. Sometimes a cell which contains
a formula resulting in zero will show the zero
as - (which I prefer). Other times the zero will
be shown as 0.00 or even (0.00).


The "-" appears only when the value is exactly zero. The value of the cells
that appear as 0.00 or (0.00) is not exactly zero.

This arises one of two ways:

1. Your formula might result in numbers with more decimal places. Common
case: multiplying by a percentage (e.g. interest rate).

2. Infinitesimal "errors" (aberrations) are introduced in arithmetic
operations because most numbers with decimal fractions cannot be represented
exactly internally. For example, =10.1-10 is not exactly the same as the
constant 0.1. Try =IF(10.1-10=0.1,TRUE). It returns FALSE(!).

Fix this one of two ways:

1. Use the ROUND function in formulas, at least in any formula that should
result in a dollars-and-cents value; i.e., =ROUND(formula,2).

Do not rely on formatting with 2 decimal places. That rounds the
__appearance__ of the value. It does not round the actual value.

2. Use the "Precision as displayed" option (PAD) under Tools Options
Calculation (in Excel 2003).

Generally, I deprecate the use of PAD because it is applied
indiscriminately and because setting the option can change constants cell
values (e.g. interest rates) irreversibly. If you choose to try PAD, be sure
to make a backup copy of the Excel file before setting the option.


----- original message -----

"Sousixer" wrote:
As a CPA, I often use the accounting format with no dollar sign. Sometimes a
cell which contains a formula resulting in zero will show the zero as -
(which I prefer). Other times the zero will be shown as 0.00 or even (0.00).
Why the differences and how do I make it always show a zero as - ?

Thanks in advance for anyone's help.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default Why are there inconsistencies in the display of zeroes in account.

I wrote:
For example, =10.1-10 is not exactly the same as the
constant 0.1. Try =IF(10.1-10=0.1,TRUE). It returns FALSE(!).


A better example that is more on point:

=10.1-10-0.1

does not result in __exactly__ zero.


----- original message -----

"Joe User" <joeu2004 wrote in message
...
"Sousixer" wrote:
I often use the accounting format with no
dollar sign. Sometimes a cell which contains
a formula resulting in zero will show the zero
as - (which I prefer). Other times the zero will
be shown as 0.00 or even (0.00).


The "-" appears only when the value is exactly zero. The value of the
cells
that appear as 0.00 or (0.00) is not exactly zero.

This arises one of two ways:

1. Your formula might result in numbers with more decimal places. Common
case: multiplying by a percentage (e.g. interest rate).

2. Infinitesimal "errors" (aberrations) are introduced in arithmetic
operations because most numbers with decimal fractions cannot be
represented
exactly internally. For example, =10.1-10 is not exactly the same as the
constant 0.1. Try =IF(10.1-10=0.1,TRUE). It returns FALSE(!).

Fix this one of two ways:

1. Use the ROUND function in formulas, at least in any formula that should
result in a dollars-and-cents value; i.e., =ROUND(formula,2).

Do not rely on formatting with 2 decimal places. That rounds the
__appearance__ of the value. It does not round the actual value.

2. Use the "Precision as displayed" option (PAD) under Tools Options
Calculation (in Excel 2003).

Generally, I deprecate the use of PAD because it is applied
indiscriminately and because setting the option can change constants cell
values (e.g. interest rates) irreversibly. If you choose to try PAD, be
sure
to make a backup copy of the Excel file before setting the option.


----- original message -----

"Sousixer" wrote:
As a CPA, I often use the accounting format with no dollar sign.
Sometimes a
cell which contains a formula resulting in zero will show the zero as -
(which I prefer). Other times the zero will be shown as 0.00 or even
(0.00).
Why the differences and how do I make it always show a zero as - ?

Thanks in advance for anyone's help.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Groupings and inconsistencies Rod[_2_] Excel Discussion (Misc queries) 3 December 16th 09 05:17 PM
account # entry needs to return the account description placerpone Excel Worksheet Functions 1 November 9th 09 03:02 AM
Chart to display zeroes values Bagia Charts and Charting in Excel 2 May 19th 09 08:04 PM
Depreciation function inconsistencies Philip J Smith Excel Worksheet Functions 0 February 13th 06 11:42 AM
Don't won't charts to display Zeroes metro Charts and Charting in Excel 2 February 28th 05 12:35 AM


All times are GMT +1. The time now is 10:24 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"