View Full Version : Copy value


Xenix
01-14-2002, 05:43 AM
I have a problem with copying data from one
field from a table into a field on my form.
I have declared them with the same format but get the error:
"The value you entered isn't valid for this field"

I use the code:
Forms!Quotation!quotecurrency = Me.GBP

Anyone help me?

Thank you
Mike

saintsman
01-14-2002, 05:59 AM
Not teaching you to suck eggs.....but are the two field types the same?

Xenix
01-14-2002, 06:12 AM
Yes they are the same Number, Single, 3 decimals.

also if I place the value at the end of the code end e.g:
Forms!Quotation!quotecurrency = 1.345

it works fine?


[This message has been edited by Xenix (edited 01-14-2002).]

boblarson
01-14-2002, 10:26 PM
Have you tried:

Forms!Quotation!quotecurrency.Value = Me.GBP.Value

BL
hth