Hi,
Tried to create a custom code with case statement and its not working. Maybe if else statement is better
Public Function Cur(ByVal as Value As String) As String
Select Case Value
Case "" Return "$ "
Case "AUD" Return "$ "
Case "USD" Return "US$ "
End Select
End Function