Leo_Polla_Psemata
Registered User.
- Local time
- Today, 09:49
- Joined
- Mar 24, 2014
- Messages
- 364
Hi
In a form, I have a comboBox with 3 columns.
I update the field and with this piece of code,
I update two more fields based on this comboBox data/columns.
I wonder if I can update fields which are not parts of a combo.
For example, suppose I have a form with two fields, DATE and USD,
Once I update the DATE field, this event, auto populates the USD exchange rate field.
In a form, I have a comboBox with 3 columns.
I update the field and with this piece of code,
I update two more fields based on this comboBox data/columns.
Code:
Me.EUR.Value = Me.Combo37.Column(2)
Me.USD.Value = Me.Combo37.Column(3)
I wonder if I can update fields which are not parts of a combo.
For example, suppose I have a form with two fields, DATE and USD,
Once I update the DATE field, this event, auto populates the USD exchange rate field.