I would like to copy a number from one to another worksheet. The copied number may have more than 2 digits after the decimal. I am using this code:
Dim MyLimit As Single
MyLimit = Round(Worksheets("Sheet1").Range("Y1").Value, 2)
Debug.Print MyLimit
Worksheets("Sheet2").Range("AB2") = MyLimit
Debug.Print is showing 0,93.
The Value of Cell AB2 is showing "0,930000007152557".
How do I get the correct value of 0,93 into the cell AB2?