Collabora Office 21.06 Help
傳回數值型表示式的絕對值。
Abs(Number)
Double
Number:要傳回絕對值的任意數值型表示式。正數 (包括 0) 的絕對值是其本身,而負數的絕對值是該負數所轉換成的正數。
以下示例使用 Abs 函式計算兩個數值之差。數值的輸入順序不會影響計算結果。
Sub ExampleDifference
Dim siW1 As Single
Dim siW2 As Single
siW1 = Int(InputBox("Please enter the first amount","Value input"))
siW2 = Int(InputBox("Please enter the second amount","Value input"))
Print "The difference is "; Abs(siW1 - siW2)
End Sub