Drop Down menu

  • Thread starter Thread starter Nathan
  • Start date Start date
N

Nathan

ok i am still having problems
i have both columns bound in the combo box and my amount
text box expresion is
=[Purchase Option].[BoundColumn]*[Number Of License]*
[Price]

the text box reads # of licenses * price there is still
no calculation from the purchase option combo box
 
Nathan said:
ok i am still having problems
i have both columns bound in the combo box and my amount
text box expresion is
=[Purchase Option].[BoundColumn]*[Number Of License]*
[Price]

the text box reads # of licenses * price there is still
no calculation from the purchase option combo box


You lost me. I thought the combo's bound column was 1 (ID),
its second column was the item descri[tion and the third
column was the price for the item. In that case, it would
be:
=[Purchase Option].Column(2) * [Number Of License] * Price
 
Back
Top