don't understand why you need to link anything

回答: 請問這裏有excel expert? I need help!n7002012-09-24 13:29:40

The most important thing in computer programming is "Loop".  Humans hate repetative work and computers love them.  As long as you can do loop, you are fine.

Private Sub test1()

    Dim ws As Worksheet

    For Each ws In ThisWorkbook.Worksheets

        Debug.Print ws.Name

        'Insert your code here

    Next ws

End Sub

所有跟帖: 

Sorry I don't know how to write code, is this the code for macro -n700- 給 n700 發送悄悄話 (0 bytes) () 09/24/2012 postreply 15:10:30

VBA很容易學 -slow_quick- 給 slow_quick 發送悄悄話 slow_quick 的博客首頁 (0 bytes) () 09/24/2012 postreply 15:54:43

請您先登陸,再發跟帖!