This is my second post for the same question, hope this time I did explain more clearly about my problem.
I need a report that generate the total value of projects from a few foreign currency to USD.
In report detail section:
-2 textboxes bound to CURRENCY and CValue from a query.
-Another 2 textboxes (unbound control) -> txtRate and txtUSD
CURRENCY CValue Rate Value(USD)
txtCurr txtCValue txtRate txtUSD
-users need to key in the conversion rate in txtRate.
-txtUSD used to calculate the converted value, where i set its control source to =[CValue]*[txtRate]
In report footer:
-another textbox txtTotalUSD is created, its control source set to Sum([CValue]*[txtRate]), but it wouldn't work and keep prompt me to enter value in txtRate.Sum only work for the fields from query/table, but it did not work for unbound value/calculated value.
Is there a way to get the total amount for USD from the unbound field in report detail? Please advise me on this, thank you very much.
Beemomo
I need a report that generate the total value of projects from a few foreign currency to USD.
In report detail section:
-2 textboxes bound to CURRENCY and CValue from a query.
-Another 2 textboxes (unbound control) -> txtRate and txtUSD
CURRENCY CValue Rate Value(USD)
txtCurr txtCValue txtRate txtUSD
-users need to key in the conversion rate in txtRate.
-txtUSD used to calculate the converted value, where i set its control source to =[CValue]*[txtRate]
In report footer:
-another textbox txtTotalUSD is created, its control source set to Sum([CValue]*[txtRate]), but it wouldn't work and keep prompt me to enter value in txtRate.Sum only work for the fields from query/table, but it did not work for unbound value/calculated value.
Is there a way to get the total amount for USD from the unbound field in report detail? Please advise me on this, thank you very much.
Beemomo
Comment