G
Guest
Alright, I'm fed up. I can't do it with Macros (too limited), I can't do it
with VBA (can't output data from what I understand), and my . What I'm trying
to do is capture the input of my main form's data, in my case, the province
selected, then use that to decide if my Provincial Sale Tax column in my
subform will have a money value of the Price * 0.08 (or 8%). It's currently
sitting in the Subform's "Price" field as an "AfterUpdate" event.
Iif(Forms![WorkOrderForm]![Province]="ON",
Forms![WorkOrderSubform]![PST]=Forms![WorkOrderSubform]![Price] * 0.08,
Forms![WorkOrderSubform]![PST] = 0)
with VBA (can't output data from what I understand), and my . What I'm trying
to do is capture the input of my main form's data, in my case, the province
selected, then use that to decide if my Provincial Sale Tax column in my
subform will have a money value of the Price * 0.08 (or 8%). It's currently
sitting in the Subform's "Price" field as an "AfterUpdate" event.
Iif(Forms![WorkOrderForm]![Province]="ON",
Forms![WorkOrderSubform]![PST]=Forms![WorkOrderSubform]![Price] * 0.08,
Forms![WorkOrderSubform]![PST] = 0)