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 が含まれていると思われるセルの位置を取得するには、.