Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default A non roundup decimal place cell format



I am looking for an excel cell format which allows a 2 decimal place number
to be
displayed as a single decimal number without the excel roundup which
normally occurs

eg display 13.68 as 13.6 , not as 13.7 and also NOT change the underlying
value.

ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,651
Default A non roundup decimal place cell format

On Mon, 28 Jan 2008 04:52:01 -0800, Nakal
wrote:



I am looking for an excel cell format which allows a 2 decimal place number
to be
displayed as a single decimal number without the excel roundup which
normally occurs

eg display 13.68 as 13.6 , not as 13.7 and also NOT change the underlying
value.

ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.


I don't believe you will find it.
--ron
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default A non roundup decimal place cell format

Nakal,

What you want doesn't exist. As you have discovered, you need to use a column of functions to get
the number to display as you desire.

HTH,
Bernie
MS Excel MVP


"Nakal" wrote in message
...


I am looking for an excel cell format which allows a 2 decimal place number
to be
displayed as a single decimal number without the excel roundup which
normally occurs

eg display 13.68 as 13.6 , not as 13.7 and also NOT change the underlying
value.

ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default A non roundup decimal place cell format

Thanks Gents,

but not the answer I wanted to hear. Looks like I am going to have to do
some lateral thinking on this one.

By the way I have found a very temporary fix to my problem. Custom cell
format "13.6" which displays 13.6 when 13.68 occurs in the cell & uses 13.68
for all calculations. But of course it displays 13.6 for any number that
occurs in that cell.

cheers

"Bernie Deitrick" wrote:

Nakal,

What you want doesn't exist. As you have discovered, you need to use a column of functions to get
the number to display as you desire.

HTH,
Bernie
MS Excel MVP


"Nakal" wrote in message
...


I am looking for an excel cell format which allows a 2 decimal place number
to be
displayed as a single decimal number without the excel roundup which
normally occurs

eg display 13.68 as 13.6 , not as 13.7 and also NOT change the underlying
value.

ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default A non roundup decimal place cell format

You could use a helper column with a formula like:

=INT(A1*10)/10

and display this to 1 dp, but hide column A from view (although you
use the column A value in all calculations).

Hope this helps.

Pete

On Jan 28, 5:58*pm, Nakal wrote:
Thanks Gents,

but not the answer I wanted to hear. *Looks like I am going to have to do
some lateral thinking on this one.

By the way I have found a very temporary fix to my problem. *Custom cell
format "13.6" which displays 13.6 when 13.68 occurs in the cell & uses 13.68
for all calculations. But of course it displays 13.6 for any number that
occurs in that cell. *

cheers



"Bernie Deitrick" wrote:
Nakal,


What you want doesn't exist. *As you have discovered, you need to use a column of functions to get
the number to display as you desire.


HTH,
Bernie
MS Excel MVP


"Nakal" wrote in message
...


I am looking for an excel cell format which allows a 2 decimal place number
to be
displayed as a single decimal number without the excel roundup which
normally occurs


eg display 13.68 as 13.6 , not as 13.7 and also NOT change the underlying
value.


ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.- Hide quoted text -


- Show quoted text -




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,441
Default A non roundup decimal place cell format

Nakal,

You could use a macro to apply your specific formatting. Select all the cells and run this macro:

Sub DoFormat()
Dim myC As Range
For Each myC In Selection
myC.NumberFormat = """" & CStr(Application.RoundDown(myC.Value, 1)) & """"
Next myC
End Sub

You could also use the worksheet's change event or calculate event to apply the formatting.

HTH,
Bernie
MS Excel MVP


"Nakal" wrote in message
...
Thanks Gents,

but not the answer I wanted to hear. Looks like I am going to have to do
some lateral thinking on this one.

By the way I have found a very temporary fix to my problem. Custom cell
format "13.6" which displays 13.6 when 13.68 occurs in the cell & uses 13.68
for all calculations. But of course it displays 13.6 for any number that
occurs in that cell.

cheers

"Bernie Deitrick" wrote:

Nakal,

What you want doesn't exist. As you have discovered, you need to use a column of functions to
get
the number to display as you desire.

HTH,
Bernie
MS Excel MVP


"Nakal" wrote in message
...


I am looking for an excel cell format which allows a 2 decimal place number
to be
displayed as a single decimal number without the excel roundup which
normally occurs

eg display 13.68 as 13.6 , not as 13.7 and also NOT change the underlying
value.

ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.






  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default A non roundup decimal place cell format

Or you may prefer =ROUNDDOWN(A4,1)
Note that Pete's formula rounds in the opposite direction to mine for
negative numbers.
--
David Biddulph

"Pete_UK" wrote in message
...
You could use a helper column with a formula like:

=INT(A1*10)/10

and display this to 1 dp, but hide column A from view (although you
use the column A value in all calculations).

Hope this helps.

Pete

On Jan 28, 5:58 pm, Nakal wrote:
Thanks Gents,

but not the answer I wanted to hear. Looks like I am going to have to do
some lateral thinking on this one.

By the way I have found a very temporary fix to my problem. Custom cell
format "13.6" which displays 13.6 when 13.68 occurs in the cell & uses
13.68
for all calculations. But of course it displays 13.6 for any number that
occurs in that cell.

cheers



"Bernie Deitrick" wrote:
Nakal,


What you want doesn't exist. As you have discovered, you need to use a
column of functions to get
the number to display as you desire.


HTH,
Bernie
MS Excel MVP


"Nakal" wrote in message
...


I am looking for an excel cell format which allows a 2 decimal place
number
to be
displayed as a single decimal number without the excel roundup which
normally occurs


eg display 13.68 as 13.6 , not as 13.7 and also NOT change the
underlying
value.


ie I am looking for a number format to change the display not a math
function eg TRUNC or ROUNDDOWN which change the underlying value.-
Hide quoted text -


- Show quoted text -



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
Subtracting two 2-decimal place numbers gives result 13-decimal places? [email protected] Excel Worksheet Functions 5 March 12th 07 10:38 PM
How do i place a roundup functoin at the end of a formula? pyroblast Excel Worksheet Functions 3 September 27th 06 03:51 AM
Converting 2-place decimal value to floating point decimal number with leading zero Kermit Piper Excel Discussion (Misc queries) 3 March 18th 06 06:20 PM
Highest & lowest place value / decimal places of cell value Neil Goldwasser Excel Worksheet Functions 2 March 15th 06 02:27 PM
Roundup Decimal Kitty Excel Discussion (Misc queries) 2 January 4th 06 03:14 PM


All times are GMT +1. The time now is 12:00 PM.

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

About Us

"It's about Microsoft Excel"