如何在Excel VBA中获取总和值

时间:2013-02-23 16:51:09

标签: excel vba

Excel VBA中的新功能。有人可以帮我这个:

如果C5D5不为空,则从B5的单元格值中删除它们,并在单元格E5中获取总和,

EX: E5= (C5+D5)-B5

同时E5的值应该从值B5减少

EX: B5=B5-E5

1 个答案:

答案 0 :(得分:0)

好吧,如果只是根据你的描述中的内容,它似乎是这样的:

Sub summation()

If Cells(5, 3) <> "" Then
If Cells(5, 4) <> "" Then

    Cells(5, 5) = Cells(5, 3) + Cells(5, 4) - Cells(5, 2)
    Cells(5, 2) = Cells(5, 2) - Cells(5, 5)

End If
End If


End Sub