April 2006
Beginner
1114 pages
98h 16m
English
Application.FixedDecimalPlaces [= setting]
Sets the placement of the decimal assumed during data entry. Default is 2. The following code configures Excel to treat the entry 1000 as 0.1, 45000 as 4.5, and so on:
Sub TestDecimal( )
' Turn on fixed decimal.
Application.FixedDecimal = True
' Set the decimal place.
Application.FixedDecimalPlaces = 4
End SubRead now
Unlock full access