Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在循环中有以下代码:
Range("N" & i + 1).Formula = "=L" & (i + 1) / resp2
上面的代码假设取 ColumnL并除以一个整数,这里称为resp2. 将数字除以resp2Coulmn 后N。
L
resp2
N
我似乎无法弄清楚语法,因为当我尝试运行宏时它不断给我一个错误或错误的数字。
任何帮助深表感谢!
这是你正在尝试的吗?
Range("N" & i + 1).Formula = "=L" & (i + 1) & "/" & resp2
所以如果值i = 2和 Cell 的resp2 = 5值N3会有=L3/5
i = 2
resp2 = 5
N3
=L3/5