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.
こんにちは..ちょっと聞きたいのですが、値が2桁以上あるかどうかを確認する方法はありますか..?
ご連絡をお待ちしております..
ありがとう、
リンク
round 関数を使用して、元の数値と比較します。そう...
Function MoreThan2Digits(N As Single) As Boolean MoreThan2Digits = (N - Round(N, 2)) <> 0 End Function