Frederique
Registered User.
- Local time
- Tomorrow, 00:03
- Joined
- Sep 5, 2016
- Messages
- 17
Hey gents,
I'm struggling with a simple formula. I can search values on the fly in excel but access seems to have a way of its own.
I have a Orderform (parent) which displays the conversionrate for the entire order. In a subform i use a reference to this conversion and currency using :
IT shows up just fine in the formview but this value doesn't want to store itself into my salesorderline table.
Other stuff is searched via Dlookup and those values store just fine.
After having read through several threads i understand that you need an afterupdate event. I have successfully done this for comboboxes but this currencyvalue i haven't figured out yet.
I have tried in afterupdate:
but to no avail. Ive played around by adding the tablename between Me. and conversionrate
Can someone point me in the right direction how to store that displayed Conversionrate value? I'm probably overthinking this and i bet you guys know a simple solution.
I'm struggling with a simple formula. I can search values on the fly in excel but access seems to have a way of its own.
I have a Orderform (parent) which displays the conversionrate for the entire order. In a subform i use a reference to this conversion and currency using :
PHP:
=[Forms]![frm_AddSalesOrders]![ConversionRate]
IT shows up just fine in the formview but this value doesn't want to store itself into my salesorderline table.
Other stuff is searched via Dlookup and those values store just fine.
After having read through several threads i understand that you need an afterupdate event. I have successfully done this for comboboxes but this currencyvalue i haven't figured out yet.
I have tried in afterupdate:
PHP:
Me.[ConversionRate] = [Forms]![frm_AddSalesOrders]![ConversionRate]
Can someone point me in the right direction how to store that displayed Conversionrate value? I'm probably overthinking this and i bet you guys know a simple solution.