LoginSignup
0
0

More than 5 years have passed since last update.

ExcelVBA 有効数字を返す関数

Posted at

メモがてら。
worksheetfunctionだけで対応可能。

=======================================
Function ConvertSFig(ByVal a As Variant, ByVal n As Integer) As Double
Dim b As Double
b = WorksheetFunction.Round(a, n - 1 - Int(WorksheetFunction.Log10(CDbl(a))))
ConvertSFig = b
End Function
=======================================

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0