【教學】Excel VBA 如何取餘數?超簡單馬上學會!

excel vba 取餘數

excel vba 取餘數

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


Step 2 複製貼上下方程式碼,更改儲存格位置以及顯示餘數儲存格位置,並按下執行即可

Sub CalculateRemainder()
    Dim number1 As Integer
    Dim number2 As Integer
    Dim remainder As Integer
    
    ' 將 A2 和 B2 的值分別指定給 number1 和 number2
    number1 = Range("A2").Value
    number2 = Range("B2").Value
    
    ' 使用 Mod 運算符計算餘數
    remainder = number1 Mod number2
    
    ' 將結果顯示在 C2 儲存格
    Range("C2").Value = remainder
End Sub
【教學】Excel VBA 如何取餘數?超簡單馬上學會!

發佈留言

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

Scroll to top