Looping through specific columns with VBA
问题 I know we can loop through columns in VBA by doing this: For j = 3 To 6 but I want to loop through specific columns only, say For j = 3, 5, 6, 7 , 8, 9 to 12 but this does not seem workable. Does anyone have any idea how I could achieve this outcome? Thank you in advance! Update: The code for the workbook, I changed the part where to Mikku's suggestion to loop through the columns. So I changed it to this: Private Function MissingEntries() As Boolean Dim i As Integer Dim atLeastOneLine As