作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试制作一个 VBA 宏,它将在 D 列中查找特定值并将文本输入到其他 3 个中。我相信我已经接近获得所需的答案,但我不确定我缺少什么才能让它发挥作用。
这是我到目前为止所拥有的:
Dim rng As range
Dim i As Long
'Set the range in column D you want to loop through
**Set rng = range("D3:D")**
For Each cell In rng
'Test cell for CR
If cell.Value = "CR" Then
'write to adjacent cell
cell.Offset(0, 3).Value = "CREDIT"
cell.Offset(0, 5).Value = "CREDIT"
cell.Offset(0, 6).Value = "CREDIT"
End If
Next
**Set rng = range("G3:G")**
For Each cell In rng
'test for empty cell
If cell.Value = "" Then
'write to adjacent cell
cell.Offset(0, 0).Value = "FREIGHT"
cell.Offset(0, 2).Value = "FREIGHT"
cell.Offset(0, 3).Value = "FREIGHT"
End If
Next
End Sub
最佳答案
尝试这个:
Set rng = Range("D3", Cells(Rows.Count, "D").End(xlUp))
关于excel - 对文本使用 IF 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50587014/
我是一名优秀的程序员,十分优秀!