vote up 3 vote down star
2

Simple: I have numbers in cells in excel. I want the numbers formatted so that if they have decimal places they show to a maximum of 2DP and if they have no decimal places it doesn't show any.

For example.

  • 15 should be formatted as 15 NOT 15.00
  • 14.3453453 should be formatted as 14.35
  • 12.1 should be formatted as 12.1
  • 0 should be formatted as 0

The closest custom format code I've come up with is 0.##. Unfortunately this formats 15.00 as 15**.** (note the extra decimal place).

Edit: To further complicate the issues, the spreadsheet is a result of an export from SQL Server Reporting Services. So no macros are possible. Oh well, it looks like 0.## is my best bet, and they can just live with the extra period.

flag

5 Answers

vote up 2 vote down check

Use the following custom format:

[=0]0;.##

This is basically a conditional format. Pseudocode:

If CellValue == 0
  Display 0
Else
  Display CellValue to up to 2 decimal places

Edit: I ran this through a few examples in Excel and got these. Does this meet your needs?

     -------------------------
     |Original     |Formatted|
     |-------------+---------|
     |       0     |        0|
     | 12.1234     |    12.12|
     | 12.1278     |    12.13|
     |    12.1     |     12.1|
     | -15.123     |   -15.12|
     |   -24.9     |    -24.9|
     -------------------------

Edit 2:
The table showed up fine in the preview, but it got eaten when I posted.. how odd.
I recreated it in <pre> tags....

Edit 3:
Stupid missing test cases... looks like this doesn't solve the trailing decimal problem either. Sorry for getting your hopes up.
My quick searches showed a couple people saying that this one isn't solvable through normal format codes. It needs to be VBA. Sorry to get your hopes up.

link|flag
vote up 0 vote down

Further to Luke's great answer above here is a variation based on his work. I didn't want to have a zero in the cell if there was no value. Leave your cell format as general and used this formula:

=IF((A1=""), "",IF(ROUND(A1,2)=INT(A1),TEXT(A1,"0"),TEXT(A1,"0.0#")))

Again where A1 is the cell being referenced.

link|flag
vote up 0 vote down

Excel custom formats can provide a partial answer

Custom formats for numbers in Excel are entered in this format:

  • positive number format;negative number format;zero format;text format

One format that comes close to your requirement, but leaves in the decimal place for numbers with no decimals is:

  • #,##.??;(#,##.??);0

Example:

  • 15 is displayed as 15.
  • 14.3453453 is displayed as 14.35
  • 12.1 is displayed as 12.1
  • 0 is displayed as 0
link|flag
vote up 1 vote down

Are you / your users inputting values directly in the cells, or are they being populated by a formula or a macro?

If the cells are not being populated directly by a human, you could store the calculated values in a hidden range and then display formatted text to the user with a formula like this:

=IF(ROUND(A1,2)=INT(A1),TEXT(A1,"0"),TEXT(A1,"0.0#"))

(where 'A1' is the cell being referenced)

The formula will display values like this:

 -------------------------
 |Original     |Formatted|
 |-------------+---------|
 |         15  |       15|
 | 14.3453453  |    14.35|
 |       12.1  |     12.1|
 |          0  |        0|
 |    -15.123  |   -15.12|
 |      1.004  |        1|
 -------------------------

NB: The formula output is a text string, not a numeric, so:

  • The output defaults to being left-aligned.
  • You cannot use the output in any further calculations (instead, you should use the original cell being referenced)
link|flag
vote up 1 vote down

I think you need to build a macro to achieve this. There is something to get you going in this ozgrid.com thread.

Hope this helps

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.