Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
for speeding up data entry I want to enter the figures without a decimal
point, and have excel make the last two digits decimals. e.g. key in 3925 which will desplay as 39.25. I've done this before but forget how! Its a custom number format I think Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Toolsoptionsedit tabfixed decimals & set to 2 places
-- John MOS Master Instructor Office 2000, 2002 & 2003 Please reply & rate any replies you get Ice Hockey rules (especially the Wightlink Raiders) "Jude" wrote: for speeding up data entry I want to enter the figures without a decimal point, and have excel make the last two digits decimals. e.g. key in 3925 which will desplay as 39.25. I've done this before but forget how! Its a custom number format I think Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
thanks that works. It must apply to the whole spreadsheet I guess. Suppose I
wanted just one column to behave in this way? "John" wrote: Toolsoptionsedit tabfixed decimals & set to 2 places -- John MOS Master Instructor Office 2000, 2002 & 2003 Please reply & rate any replies you get Ice Hockey rules (especially the Wightlink Raiders) "Jude" wrote: for speeding up data entry I want to enter the figures without a decimal point, and have excel make the last two digits decimals. e.g. key in 3925 which will desplay as 39.25. I've done this before but forget how! Its a custom number format I think Thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=A1/100
Copy down as far as required "Jude" wrote: for speeding up data entry I want to enter the figures without a decimal point, and have excel make the last two digits decimals. e.g. key in 3925 which will desplay as 39.25. I've done this before but forget how! Its a custom number format I think Thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
For one column you could use event code.
Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Target.Cells.Column = 1 Then If Not IsNumeric(Target.Value) Then Exit Sub On Error GoTo endit Application.EnableEvents = False With Target .Value = .Value / 100 .NumberFormat = "0.00" End With End If endit: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Copy/paste the code into that sheet module. As written, works only on Column A. Change the Column = 1 to whatever column you wish. Gord Dibben MS Excel MVP On Tue, 20 Mar 2007 08:14:10 -0700, Jude wrote: thanks that works. It must apply to the whole spreadsheet I guess. Suppose I wanted just one column to behave in this way? "John" wrote: Toolsoptionsedit tabfixed decimals & set to 2 places -- John MOS Master Instructor Office 2000, 2002 & 2003 Please reply & rate any replies you get Ice Hockey rules (especially the Wightlink Raiders) "Jude" wrote: for speeding up data entry I want to enter the figures without a decimal point, and have excel make the last two digits decimals. e.g. key in 3925 which will desplay as 39.25. I've done this before but forget how! Its a custom number format I think Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
can't enter in excel some letters, or digits. | Excel Discussion (Misc queries) | |||
excel, how enter 15 digits in a cell without rounding off last? | Excel Worksheet Functions | |||
Format monetary amount to 9 digits with No decimals without rounding | Excel Worksheet Functions | |||
significant digits for decimals | Excel Worksheet Functions | |||
How can I enter 8 digits in excel (eg 19710625) and get it to dis. | Excel Worksheet Functions |