Macro Group
Great. So I found out how to create a Macro group.
I have the following two Macros:
Macro1
SetValue
Item: [LineTotal]
Expression: CCur([UnitPrice2]*[Quantity]*(1-[Discount])*(1+[SalesTax]))
Macro2
SetValue
Item: [UnitPrice2]
Expression:=[Product ID].[column](2)
Then I have the following Macro Group:
MacroGroup1
1)
RunMacro
MacroName: Macro2
2)
RunMacro
MacroName: Macro1
In my "Order Details" form, I have a [Product ID] combo box.
Column 2 of the [Product ID] combo has the Unit Price (this explains Macro 2).
Now,
In the
AfterUpdate of the combo box I entered
MacroGroup1
When I run the form, and I select a different value from the [Product ID] combo box, UnitPrice is updated, but not LineTotal. (???)
In other words, action 1) of
Macrogroup1 is done, but not 2).
Why is this?
