Hello yudlugar, it only works for USD, when i try in GBP, it gives me an error: Type mismatch
![]()
If ComboBox1.Value = "USD" Then TextBox2.Value = Format(TextBox1.Value * 1, "$##,###") TextBox1.Value = Format(TextBox1.Value, "$##,###") Exit Sub End If If ComboBox1.Value = "GBP" Then TextBox2.Value = Format(TextBox1.Value * 1.55, "GBP##,####") TextBox1.Value = Format(TextBox1.Value, "GBP##,###") Exit Sub End If
Bookmarks