David Montoya
New Member
- Joined
- Apr 25, 2018
- Messages
- 49
Dear, I have a worksheet, which contains many formulas; I need to copy this worksheet to a separate workbook without the formulas (value only). The problem I am facing is that by using the macro below, it changes results such as 210.000 to 210, and I need to maintain the original result as 210.000.
Code:
Sheets("Std").Copy
With ActiveSheet.UsedRange
.Value = .Value
End With