how would I let a customer update using allow value list edits, a combo box with 2 columns?
I can do it fine with one but with 2 it only updates the first column.
Data Sample
[pre]MeterTestREason ReasonDesc[/pre]
[pre]088 PM[/pre]
[pre]11 NR[/pre]
[pre]014 Special test[/pre]
[pre]010 CFD[/pre]
[pre]017 Other[/pre]
[pre]099 New[/pre]
so when they add a new one, I need them to put the number and description
thanks
lhuffst
I can do it fine with one but with 2 it only updates the first column.
Code:
cboMtrReason
Rowsource:
SELECT tblMeterTestReasonType.MeterTestREason, tblMeterTestReasonType.ReasonDesc
FROM tblMeterTestReasonType;
Rowsource Type: Table/Query
Bound to: column 1
Allow value list edits: yes
Limit to list : no
Data Sample
[pre]MeterTestREason ReasonDesc[/pre]
[pre]088 PM[/pre]
[pre]11 NR[/pre]
[pre]014 Special test[/pre]
[pre]010 CFD[/pre]
[pre]017 Other[/pre]
[pre]099 New[/pre]
so when they add a new one, I need them to put the number and description
thanks
lhuffst