Xenix
Registered User.
- Local time
- Today, 15:05
- Joined
- Oct 8, 2001
- Messages
- 124
I have a form that you select a currency and the whole quotation changes for that currency but I want to show the correct currency symbol after I sellect the currency, I have this procedure but I don't think my code is correct because it doe's not work
Private Sub SubTotal_AfterUpdate()
If Forms!Quotation!currencynote = "GBP" Then
Me.Markup.Format = "£#####;0"
ElseIf Forms!Quotation!currencynote = "USD" Then
Me.Markup.Format = "$#####;0"
ElseIf Forms!Quotation!currencynote = "JPY" Then
Me.Markup.Format = "Y#####;0"
ElseIf Forms!Quotation!currencynote = "EUR" Then
Me.Markup.Format = "€#####;0"
Else: Me.Markup.Format = "#####;0"
End If
End Sub
Regards
Mike
Private Sub SubTotal_AfterUpdate()
If Forms!Quotation!currencynote = "GBP" Then
Me.Markup.Format = "£#####;0"
ElseIf Forms!Quotation!currencynote = "USD" Then
Me.Markup.Format = "$#####;0"
ElseIf Forms!Quotation!currencynote = "JPY" Then
Me.Markup.Format = "Y#####;0"
ElseIf Forms!Quotation!currencynote = "EUR" Then
Me.Markup.Format = "€#####;0"
Else: Me.Markup.Format = "#####;0"
End If
End Sub
Regards
Mike