I want to format a number in money format as Rupiah eg. Rp3560.00
From the Xojo documentation:
The following example returns the number 3560.3 formatted as $3,560.30.
Dim s As String
s = Format(3560.3, "\\$###,##0.00")
However my code leaves off the second letter and returns R3560.00
Select Case country
Case "Indonesia"
return "\\Rp" +"###,###0.00"