Dear experts,
I’m trying to set a default for a field (ExchangeRateID) on my form but I’m not getting any value (?)
On my form PurchaseOrderItemsFSub (the recordsource is the table PurchaseOrderItemT) I have following fields:
POItemID PK
POID FK
ProductID FK
ProductBrandID FK
ProductModel
ProductDescription
Quantity
UnitPrice
Discount
CurrencyID FK
ExchangeRateID FK
The field ExchangeRateID I have converted to a combobox and results the exchange rates from table ExchangeRateT which are sorted by currency and descending by date.
Control Source: ExchangeRateID
Row Source:
The combobox ExchangeRateID I want to show the recent RoE (ExchangeRate) based on the CurrencyID selected (CurrencyID field has default EUR) for each new record.
The default value should be the most current exchange rate.
In the Query1 example: the default currency rate when choosing EUR would be 0,9162 as the date March 1st 2020 is the most recent date.
I was trying to enter following function in the property sheet of the combobox under the Default Value:
But the combobox remains blank.
I’m trying to set a default for a field (ExchangeRateID) on my form but I’m not getting any value (?)
On my form PurchaseOrderItemsFSub (the recordsource is the table PurchaseOrderItemT) I have following fields:
POItemID PK
POID FK
ProductID FK
ProductBrandID FK
ProductModel
ProductDescription
Quantity
UnitPrice
Discount
CurrencyID FK
ExchangeRateID FK
The field ExchangeRateID I have converted to a combobox and results the exchange rates from table ExchangeRateT which are sorted by currency and descending by date.
Control Source: ExchangeRateID
Row Source:
Code:
SELECT ExchangeRateT.ExchangeRateID, CurrencyT.CurrencyName, ExchangeRateT.ExchangeRate, ExchangeRateT.ExchangeRateDate FROM CurrencyT INNER JOIN ExchangeRateT ON CurrencyT.CurrencyID = ExchangeRateT.CurrencyID ORDER BY CurrencyT.CurrencyName, ExchangeRateT.ExchangeRateDate DESC;
Query1 | |||
ExchangeRateID | currency | RoE: | Date: |
5 | EUR | 0,9162 | 01-mrt-20 |
3 | EUR | 0,8054 | 01-feb-20 |
1 | EUR | 0,8423 | 01-jan-20 |
6 | USD | 1 | 01-mrt-20 |
2 | USD | 1 | 01-feb-20 |
4 | USD | 1 | 01-jan-20 |
The combobox ExchangeRateID I want to show the recent RoE (ExchangeRate) based on the CurrencyID selected (CurrencyID field has default EUR) for each new record.
The default value should be the most current exchange rate.
In the Query1 example: the default currency rate when choosing EUR would be 0,9162 as the date March 1st 2020 is the most recent date.
I was trying to enter following function in the property sheet of the combobox under the Default Value:
Code:
DMax("ExchangeRateDate";"ExchangeRateT";"CurrencyID=" & [CurrencyID])
But the combobox remains blank.