VBA教學
VBA Excel宏
VBA概述
Excel VBA術語
VBA宏註釋
VBA消息框
VBA輸入框
VBA變量
VBA常量
VBA運算符
VBA算術運算符
VBA邏輯運算符
VBA連接操作
VBA比較運算符
VBA決策
VBA if語句
VBA if/else語句
VBA if...elseif...else語句
VBA嵌套if語句
VBA switch語句
VBA循環
VBA for循環
VBA for each循環
VBA While Wend循環
VBA do...while循環
VBA do...until循環
VBA退出for循環
VBA 退出Do循環
VBA字符串
VBA Instr函數
VBA Rtrim函數
VBA Trim函數
VBA Len函數
VBA Replace函數
VBA Space函數
VBA strComp函數
VBA string函數
VBA 字符串Reverse函數
VBA Mid函數
VBA Right函數
VBA Left函數
VBA UCase函數
VBA Lcase函數
VBA InString反轉
VBA日期時間函數
VBA CDate函數
VBA Date日期函數
VBA DateAdd函數
VBA DateDiff函數
VBA DatePart函數
VBA DateSerial函數
VBA FormatDateTime函數
VBA IsDate函數
VBA Day函數
VBA Month函數
VBA Year函數
VBA MonthName函數
VBA WeekDay函數
VBA WeekDayName函數
VBA Now函數
VBA Hour函數
VBA Minute函數
VBA Second函數
VBA Time函數
VBA Timer函數
VBA TimeSerial函數
VBA TimeValue函數
VBA數組
VBA LBound函數
VBA UBound函數
VBA Split函數
VBA Join函數
VBA IsArray函數
VBA Erase函數
VBA定義函數
VBA子過程
VBA事件
VBA錯誤處理
VBA Excel對象
VBA文本文件
VBA圖表編程
VBA for each循環
For Each 循環用於執行語句或一組爲數組或集合的每個元素。
For Each 循環類似於For循環; 然而,該循環被執行用於在陣列或組的每個元素。因此,步進計數器將不會在這種類型的環的存在,它主要用於數組或用在文件系統對象的上下文,以遞歸方式運行。
語法:
一個對於 VBA每個循環的語法是:
For Each element In Group [statement 1] [statement 2] .... [statement n] [Exit For] [statement 11] [statement 22] Next
示例:
Private Sub Constant_demo_Click() 'fruits is an array
fruits = Array("apple", "orange", "cherries")
Dim fruitnames As Variant
'iterating using For each loop. For Each Item In fruits
fruitnames = fruitnames & Item & Chr(10) Next MsgBox fruitnames End Sub
當執行上面的代碼,它打印所有的水果名稱在每行。
apple
orange
cherries