With wsDURATION
Range("A1").Select
For x = 1 To wsDURLrow Step 1
If Cells.Offset(x, 4).Value = "J" Then
Cells.Offset(x, 13).Value = "positiv"
End If
Next x
End With
答案 0 :(得分:0)
好的伙计们,我已经弄清楚了,主题可能会被关闭:)。
With wsDURATION
For Each cell In rng.Cells
x = 0
If cell.Value = "J" Then
cell.Offset(x, 9).Value = "positiv"
End If
x = x + 1
Next
End With