Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 33
Default Selective Precision as Displayed

I have a series of worksheets that work pricing functions in my workbook. I
need to use the Precision as Displayed in order for Excel to arrive at the
right pricing. But one of the sections that I need to add to this workbook
would require Precision as Displayed to be bypassed in order to arrive at the
desired result. Is there a way to have Precision as Displayed checked in the
workbook, yet reserve an area on a worksheet, or an entire sheet where
Precision as Displayed could be bypassed? Thank you in advance.
  #2   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 3,440
Default Selective Precision as Displayed

I don't think you can.
But there are several ways around.

First, instead of relying on "Precision as displayed", you might use ROUND()
to calculate and display with a specified number of decimals.

Second, note that "Precision as displayed" is not a correct description of
this feature. It should have been something like "Precision as formatted".
For example, if you have =1/3 in a cell of only a few characters wide,
formatted as General, it displays 0.33 or 0.333. But is still calculates
with the "full" precision, that is, Excel's maximum precision of 15
significant decimal digits.
So if you don't format the area that you want to exclude from "Precision as
displayed", or format it as General, Excel will not apply any limits on the
precision.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel



"Montana" wrote in message
...
I have a series of worksheets that work pricing functions in my workbook. I
need to use the Precision as Displayed in order for Excel to arrive at the
right pricing. But one of the sections that I need to add to this workbook
would require Precision as Displayed to be bypassed in order to arrive at
the
desired result. Is there a way to have Precision as Displayed checked in
the
workbook, yet reserve an area on a worksheet, or an entire sheet where
Precision as Displayed could be bypassed? Thank you in advance.


  #3   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 33
Default Selective Precision as Displayed

Thanks, Niek. I was hoping for an easier fix than having to rewrite all those
formulas to include the round function, but I'll bite the bullet & do it the
right way. Thanks again.

"Niek Otten" wrote:

I don't think you can.
But there are several ways around.

First, instead of relying on "Precision as displayed", you might use ROUND()
to calculate and display with a specified number of decimals.

Second, note that "Precision as displayed" is not a correct description of
this feature. It should have been something like "Precision as formatted".
For example, if you have =1/3 in a cell of only a few characters wide,
formatted as General, it displays 0.33 or 0.333. But is still calculates
with the "full" precision, that is, Excel's maximum precision of 15
significant decimal digits.
So if you don't format the area that you want to exclude from "Precision as
displayed", or format it as General, Excel will not apply any limits on the
precision.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel



"Montana" wrote in message
...
I have a series of worksheets that work pricing functions in my workbook. I
need to use the Precision as Displayed in order for Excel to arrive at the
right pricing. But one of the sections that I need to add to this workbook
would require Precision as Displayed to be bypassed in order to arrive at
the
desired result. Is there a way to have Precision as Displayed checked in
the
workbook, yet reserve an area on a worksheet, or an entire sheet where
Precision as Displayed could be bypassed? Thank you in advance.


  #4   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 3,440
Default Selective Precision as Displayed

Ok. Remember that you don't have to if you can format the ranges that you
don't want to calculate with the shown precision as General.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Montana" wrote in message
...
Thanks, Niek. I was hoping for an easier fix than having to rewrite all
those
formulas to include the round function, but I'll bite the bullet & do it
the
right way. Thanks again.

"Niek Otten" wrote:

I don't think you can.
But there are several ways around.

First, instead of relying on "Precision as displayed", you might use
ROUND()
to calculate and display with a specified number of decimals.

Second, note that "Precision as displayed" is not a correct description
of
this feature. It should have been something like "Precision as
formatted".
For example, if you have =1/3 in a cell of only a few characters wide,
formatted as General, it displays 0.33 or 0.333. But is still calculates
with the "full" precision, that is, Excel's maximum precision of 15
significant decimal digits.
So if you don't format the area that you want to exclude from "Precision
as
displayed", or format it as General, Excel will not apply any limits on
the
precision.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel



"Montana" wrote in message
...
I have a series of worksheets that work pricing functions in my
workbook. I
need to use the Precision as Displayed in order for Excel to arrive at
the
right pricing. But one of the sections that I need to add to this
workbook
would require Precision as Displayed to be bypassed in order to arrive
at
the
desired result. Is there a way to have Precision as Displayed checked
in
the
workbook, yet reserve an area on a worksheet, or an entire sheet where
Precision as Displayed could be bypassed? Thank you in advance.



  #5   Report Post  
Posted to microsoft.public.excel.setup
external usenet poster
 
Posts: 22,906
Default Selective Precision as Displayed

This macro will help you re-write them.

Sub RoundAdd()
Dim mystr As String
Dim cel As Range
For Each cel In Selection
If cel.HasFormula = True Then
If Not cel.Formula Like "=ROUND(*" Then
mystr = Right(cel.Formula, Len(cel.Formula) - 1)
cel.Value = "=ROUND(" & mystr & ",0)"
End If
End If
Next
End Sub


Gord Dibben MS Excel MVP

On Tue, 19 Jan 2010 21:38:02 -0800, Montana
wrote:

Thanks, Niek. I was hoping for an easier fix than having to rewrite all those
formulas to include the round function, but I'll bite the bullet & do it the
right way. Thanks again.

"Niek Otten" wrote:

I don't think you can.
But there are several ways around.

First, instead of relying on "Precision as displayed", you might use ROUND()
to calculate and display with a specified number of decimals.

Second, note that "Precision as displayed" is not a correct description of
this feature. It should have been something like "Precision as formatted".
For example, if you have =1/3 in a cell of only a few characters wide,
formatted as General, it displays 0.33 or 0.333. But is still calculates
with the "full" precision, that is, Excel's maximum precision of 15
significant decimal digits.
So if you don't format the area that you want to exclude from "Precision as
displayed", or format it as General, Excel will not apply any limits on the
precision.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel



"Montana" wrote in message
...
I have a series of worksheets that work pricing functions in my workbook. I
need to use the Precision as Displayed in order for Excel to arrive at the
right pricing. But one of the sections that I need to add to this workbook
would require Precision as Displayed to be bypassed in order to arrive at
the
desired result. Is there a way to have Precision as Displayed checked in
the
workbook, yet reserve an area on a worksheet, or an entire sheet where
Precision as Displayed could be bypassed? Thank you in advance.



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
Precision As Displayed Has Failed Me--Help Eric Excel Discussion (Misc queries) 12 July 16th 08 03:19 PM
Please help me... Set precision as displayed issue Penguin Excel Discussion (Misc queries) 1 September 27th 07 06:48 PM
Precision as displayed problems sivatca Excel Worksheet Functions 1 December 1st 05 06:14 PM
Precision displayed does not match precision in cell James Wilkerson Excel Discussion (Misc queries) 10 June 15th 05 02:40 PM
Precision as displayed Susan Lambert Setting up and Configuration of Excel 1 December 17th 04 08:36 PM


All times are GMT +1. The time now is 04:45 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"