作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个样本的 3 个字段。
我可以让宏显示一组三个样本的结果。
如何循环下面的 3 个样本,等等?
Sub Data()
If Range("H33").Value <= 40 And Range("H34").Value > 42 And Range("H35").Value > 42 Then
Range("J33").Value = "Present"
Range("K33").Value = "SARS-CoV-2 DETECTED"
Else:
Range("K33").Value = "SARS-CoV-2 not detected"
Range("J33").Value = "Absent"
End If
End Sub
最佳答案
你可以做这样的事情来保持简单:
Sub Data()
Dim cell As Range, i As Long
For Each cell In Range("G1:G20") 'Your column of the sample names
If cell.Value = "Sample" Then 'If equals sample. Otherwise you could do: If cell.Value <> "" Then
i = cell.Row
If Range("H" & i).Value <= 40 And Range("H" & i + 1).Value > 42 And Range("H" & i + 2).Value > 42 Then
Range("J" & i).Value = "Present"
Range("K" & i).Value = "SARS-CoV-2 DETECTED"
Else
Range("K" & i).Value = "SARS-CoV-2 not detected"
Range("J" & i).Value = "Absent"
End If
End If
Next
End Sub
关于excel - 如何以三组为一组循环行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66311793/
我是一名优秀的程序员,十分优秀!