In Excel you have to type the number in the cell and then format the cell with the appropriate number format.
There is a predefined number format in Excel for the
English Philippine Peso:
[$₱-3409]#,##0.00
Or maybe you mean "Filipino"
[$₱-464]#,##0.00
And you can have (almost) any currency format used around the world, the syntax for currency formats of cells is
"[$" & Currency Symbol & "-" & Language ID in hex & "]" & usual number format
Sub Test()
Dim LanguageID As Long
Dim CurrencyASCII As Long
CurrencyASCII = 8369 'The sign in ASCII code
LanguageID = 13321 'The language id (3409 in hex)
ActiveCell.NumberFormat = _
"[$" & ChrW(CurrencyASCII) & "-" & Hex(LanguageID) & "]#,##0.00"
End Sub
Execute that and look into the cell format.
You can also apply that with a formula:
=TEXT(1,"[$₱-3409]#.##0,00")
Andreas.