我在连续表格的每条记录的末尾都有一个按钮,它需要这样做:
Private Sub Update_Click()
Dim SellP As Double
Dim BuyP As Double
Dim Profit As Double
SellP = DLookup(SellPrice, Flips, [Current])
BuyP = DLookup(BuyPrice, Flips, [Current])
Profit = SellP - BuyP
Flips.Profit = Profit
End Sub
现在我知道这不是正确的代码,但我希望它能让您了解它需要做什么,基本上:
找到 SalePrice,找到 BuyPrice,从 SalePrice 中减去 BuyPrice 并得到结果 Profit,然后用利润填充 Profit 字段。
谢谢!