連続フォームの各レコードの最後にボタンがあり、これを行う必要があります。
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 フィールドに利益を入力します。
ありがとう!