Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个浮点值的变量,即
Dim H_reqquant As Double 'Its value is 10.5
但是当我像这样在 VBA 中得到这个值时:
H_reqquant = Worksheets("Data").Cells(3, 8).value
它从10.5转换为105
有什么建议么?
-汉森
你确定你指向正确的单元格吗?
试试 Debug.Print Worksheets("Data").Cells(3, 8).Address
要获取您认为包含 10.5 的单元格的位置。
您确定单元格(3,8)中的值是 10.5 而不是 105,而是格式化为 10.5 吗?检查公式栏以确保。