gpt4 book ai didi

excel - Visual Basic - for..next 和公式

转载 作者:行者123 更新时间:2023-12-04 21:29:07 25 4
gpt4 key购买 nike

我需要制作根据单元格值插入公式的 Excel VBA 脚本。
我当前的版本只返回 FALSE 值

For i = 1 To 10 Step 1
If Cells(i, 2).Value > Cells(i, 1).Value Then Cells(i, 3).Value = Cells(i, 3).Formula = "=cells(i,1).value+cells(i,2).value"
If Cells(i, 2).Value < Cells(i, 1).Value Then Cells(i, 3).Value = Cells(i, 3).Formula = "=cells(i,2).value-cells(i,1).value"
Next i

最佳答案

我猜你想做这样的事情

For i = 1 To 10 Step 1
If Cells(i, 2).Value > Cells(i, 1).Value Then Cells(i, 3).FormulaR1C1 = "=RC[-2]+RC[-1]"
If Cells(i, 2).Value < Cells(i, 1).Value Then Cells(i, 3).FormulaR1C1 = "=RC[-2]-RC[-1]"
Next i

关于excel - Visual Basic - for..next 和公式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59681160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com