Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Wisteria
 
Posts: n/a
Default Format option for decimal. e.g., entering 531 results in 5.31

Have an option of selecting a "format cell" decimal feature that allows
automatic 2 place value setting. E.g. entering 531 results in 5.31, or $5.31
when you have also selected the cells to be "currency" formated.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc
  #2   Report Post  
Posted to microsoft.public.excel.misc
Kevin B
 
Posts: n/a
Default Format option for decimal. e.g., entering 531 results in 5.31

If you click on TOOLS, select OPTIONS and then click the EDIT tab, there's a
checkbox titled FIXED DECIMAL PLACES which does exactly what your suggestion
asks for. It's been around for the last couple of release if I remember
correctly.
--
Kevin Backmann


"Wisteria" wrote:

Have an option of selecting a "format cell" decimal feature that allows
automatic 2 place value setting. E.g. entering 531 results in 5.31, or $5.31
when you have also selected the cells to be "currency" formated.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc

  #3   Report Post  
Posted to microsoft.public.excel.misc
Wisteria
 
Posts: n/a
Default Format option for decimal. e.g., entering 531 results in 5.31

kevin; Wouldn't it be nice if you didn't have to go through that process to
start that format method, instead of selecting it as an option from the
"format cell" selections in the drop down ribbon? When you change the format
the way you instruct, you also have to remember to change it back when you
are finished.

"Kevin B" wrote:

If you click on TOOLS, select OPTIONS and then click the EDIT tab, there's a
checkbox titled FIXED DECIMAL PLACES which does exactly what your suggestion
asks for. It's been around for the last couple of release if I remember
correctly.
--
Kevin Backmann


"Wisteria" wrote:

Have an option of selecting a "format cell" decimal feature that allows
automatic 2 place value setting. E.g. entering 531 results in 5.31, or $5.31
when you have also selected the cells to be "currency" formated.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...lic.excel.misc

  #4   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph
 
Posts: n/a
Default Format option for decimal. e.g., entering 531 results in 5.31

"Wisteria" wrote in message
...
Have an option of selecting a "format cell" decimal feature that allows
automatic 2 place value setting. E.g. entering 531 results in 5.31, or
$5.31
when you have also selected the cells to be "currency" formated.


You may wish to look at Tools/ Option/ Edit
Fixed decimal places

But remember that this changes the value rather than changing the display
format.
--
David Biddulph


  #5   Report Post  
Posted to microsoft.public.excel.misc
Wisteria
 
Posts: n/a
Default Format option for decimal. e.g., entering 531 results in 5.31

David; Wouldn't it be nice if you didn't have to go through that process to
start that format method, instead of selecting it as an option from the
"format cell" selections in the drop down ribbon? When you change the format
the way you instruct, you also have to remember to change it back when you
are finished.

"David Biddulph" wrote:

"Wisteria" wrote in message
...
Have an option of selecting a "format cell" decimal feature that allows
automatic 2 place value setting. E.g. entering 531 results in 5.31, or
$5.31
when you have also selected the cells to be "currency" formated.


You may wish to look at Tools/ Option/ Edit
Fixed decimal places

But remember that this changes the value rather than changing the display
format.
--
David Biddulph





  #6   Report Post  
Posted to microsoft.public.excel.misc
Chip Pearson
 
Posts: n/a
Default Format option for decimal. e.g., entering 531 results in 5.31

If you want fixed decimal to apply only to a range of cells, you
can use the Change event procedure to change the entered result.
The following code will divide any numeric entry in A1:A10 by
100.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count 1 Then
Exit Sub
End If
If Target.HasFormula = True Then
Exit Function
End If
On Error GoTo ErrH:
If Not Application.Intersect(Target, Range("A1:A10")) Is
Nothing Then
If IsNumeric(Target.Value) = True Then
Application.EnableEvents = False
Target.Value = Target.Value / 100
End If
End If
ErrH:
Application.EnableEvents = True

End Sub

Right-Click the appropriate sheet tab, choose View Code, and
paste in this code.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Wisteria" wrote in message
...
David; Wouldn't it be nice if you didn't have to go through
that process to
start that format method, instead of selecting it as an option
from the
"format cell" selections in the drop down ribbon? When you
change the format
the way you instruct, you also have to remember to change it
back when you
are finished.

"David Biddulph" wrote:

"Wisteria" wrote in
message
...
Have an option of selecting a "format cell" decimal feature
that allows
automatic 2 place value setting. E.g. entering 531 results
in 5.31, or
$5.31
when you have also selected the cells to be "currency"
formated.


You may wish to look at Tools/ Option/ Edit
Fixed decimal places

But remember that this changes the value rather than changing
the display
format.
--
David Biddulph





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
format cell based on results of vlookup function Edith F Excel Worksheet Functions 1 July 21st 05 07:39 PM
Change the format of my footer {date} option? Tori Excel Discussion (Misc queries) 1 January 25th 05 05:33 PM
entering numbers to display a time format Ian Williams/Eazygig Excel Discussion (Misc queries) 1 January 10th 05 11:57 AM
Dates in 2005 format cells are not entering correctly. snixflowergirl Excel Worksheet Functions 2 January 5th 05 05:13 PM
Help Q: Entering 7 p time format, does not convert to 19:00 Frank Kabel Excel Discussion (Misc queries) 0 December 7th 04 07:20 AM


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