周郁琦Excel與 JavaScript迴圈

輸出

Excel學習


'變數variables應該要宣告
Option Explicit '要求所有變數必須宣告才能使用
Dim i, j As Integer
'Dimension 宣告指令

Public Sub 周郁琦迴圈()
  Cells(1, 1).Value = 12345
  Cells(1, 1).Font.Color = RGB(0, 0, 256)
  Cells(1, 1).Font.Bold = True
End Sub

Public Sub 豬八戒()
  For i = 1 To 7
    For j = 1 To 5
        Cells(i, j).Value = i * j
    Next
  Next
End Sub

留言

這個網誌中的熱門文章

周郁琦清單方塊ListBox與核取方塊CheckBox