Hi,
i have in my table/form two fields, first is number_field(decimal) and
second is combo with two values from other table(USD and EURO). now i want
that after i select USD the number_field is formated as Currency and if i
select EURO than as Euro.
how can i make this happen?
many thanks
J.J.
Lumpierbritches - 31 Aug 2004 12:48 GMT
Why don't you use the AfterUpdate Event and use an If then Else Statement.
Air Code:
If cboCombobox.value = USD Then
textbox = Format(value, "currency")
Else If cboCombobox.value = Euro Then
textbox= Format(Euro Format)
End If
HTH
Michael