V
Veli Izzet
Hi all,
I have a report (invoice) where I list the products, their prices and
totals.
From time to time I need to print this invoice in usd instead of local
currency.
I can do a lookup on the report and get the rate.I get the rate and
print it on the header section of the invoice. (Text137)
However I cannot multiply this value with the unit prices in local
currency to convert them to usd. It seems the report does not consider
the value to be numeric.
What can I do?
The report is called from a form (frmSales) with subform(
frmSalesDetails) with a button. The code for the button is:
Private Sub Command72_Click()
On Error GoTo Err_Command72_Click
Dim stDocName As String
If (BelgeTip = "Fatura") Then
stDocName = "YTLFatura"
Else
stDocName = "Teslimat Belgesi"
End If
DoCmd.OpenReport stDocName, acPreview, "Satislar Filtre"
The rate is also present on the form.
I have a report (invoice) where I list the products, their prices and
totals.
From time to time I need to print this invoice in usd instead of local
currency.
I can do a lookup on the report and get the rate.I get the rate and
print it on the header section of the invoice. (Text137)
However I cannot multiply this value with the unit prices in local
currency to convert them to usd. It seems the report does not consider
the value to be numeric.
What can I do?
The report is called from a form (frmSales) with subform(
frmSalesDetails) with a button. The code for the button is:
Private Sub Command72_Click()
On Error GoTo Err_Command72_Click
Dim stDocName As String
If (BelgeTip = "Fatura") Then
stDocName = "YTLFatura"
Else
stDocName = "Teslimat Belgesi"
End If
DoCmd.OpenReport stDocName, acPreview, "Satislar Filtre"
The rate is also present on the form.