好的,所以我想找出一种方法来使用 VBA 在 Excel 2007 的幕后更改工作表中的单元格,所以如果我在单元格 A1 和 B1 中有某些内容,那么 C1 将自动填充答案,而框中没有任何公式。
我试过了
Private Sub Worksheet_Change()
dim weekCost as integer
dim monthCost as integer
dim salesTax as integer
dim totalCost as integer
weekCost = Range("$A$1")
monthCost = Range("$B$2")
salesTax = (weekCost + monthCost) * .08
totalCost = weekCost + monthCost
totalCost = salesTax + totalCost
totalCost = range("$C$1")
end sub
我无法获得坚持该单元的总成本,有人知道吗?