我下載了調查結果並將它們放入Excel中。通過每一列循環IF聲明
我可以將此宏應用於「A」列。
Private Sub CommandButton1_Click()
counter = 2 'moves output
For Each n In [A7:A50] 'loops through cell in specified range
If n < 400 Then
Sheets("Output").Cells(counter, "B") = 0 'Output to other sheet, = points awarded
ElseIf n > 400 Then
Sheets("Output").Cells(counter, "B") = 3 'Output to other seet, = points awarded
End If
counter = counter + 1 'moves counter up 1
Next
End Sub
「B-R」全部具有與「A」列相同的條件。相反,只有開關「A」和輸出列輸入驗證碼
Sheets("Output").Cells(counter, "B") = 3 'Output to other seet, = points awarded
一遍又一遍的,是可以循環我的櫃檯和我的if語句。
我的腳本查看「結果工作表」中的列/行A7:A50,在「輸出工作表」的B列中生成點。
我一直無法讓它看到列B(結果工作表),然後輸出到列C(輸出工作表),然後查看列C(結果工作表),然後輸出到列D(輸出工作表)。
查看嵌套循環(For ... For ... Next ... Next) - 一個用於列和一個用於行,並根據您的循環計數器設置Cells()的兩個值 – SMM