AfterUpdate Problem

  • Thread starter Thread starter Compnstuff
  • Start date Start date
C

Compnstuff

Private Sub PartNumber_AfterUpdate()
'Update description, rev level, and price
Me!Description = Me![PartNumber].Column(1)
Me!Revision = Me![PartNumber].Column(2)
Me!UnitPrice = Me![PartNumber].Column(3)
End Sub
-------------
PartNumber is pulling from a query.
Description is updating as should but nothing in Revision or UnitPrice.

Any suggestions?
Comp
 
Found the problem...have to set the column number setting for cbo box to
4 columns...

Thx
 
Back
Top