eirikdaude
Board Regular
- Joined
- Nov 26, 2013
- Messages
- 93
- Office Version
- 365
- Platform
- Windows
Can someone give me a pointer as to why my custom number format only shows 1 decimal place? The number format is
And I ran this snippet on the range to make sure it's all numbers...
Code:
_-* # ##0,000_-;-* # ##0,000_-;_-* "-"??_-;_-@_-
And I ran this snippet on the range to make sure it's all numbers...
VBA Code:
Sub dlæøphkæl()
Dim c As Range
For Each c In ActiveSheet.Range("S34:AD34")
c.Value = CDbl(Trim(c.Value))
Next c
End Sub