【教學】Excel VBA 如何取得兩數值相除後的整數部分?超簡單馬上學會!

excel vba 除法取整數 商數

Step 1 在功能列「開發人員」中程式碼選擇「Visual Basic」


excel vba 除法取整數 商數

Step 2 複製下方程式碼貼上,修改除數和被除數數值,並按下執行即可

Sub IntegerDivision()
    Dim result As Integer
    Dim numerator As Integer
    Dim denominator As Integer
    
    ' 設定除數和被除數
    numerator = 100
    denominator = 7
    
    ' 進行除法並取整
    result = Int(numerator / denominator)
    
    ' 在訊息框中顯示結果
    MsgBox "整數除法結果為: " & result
End Sub

Step 3 會跳出訊息框顯示結果

【教學】Excel VBA 如何取得兩數值相除後的整數部分?超簡單馬上學會!

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

Scroll to top