Hi
I have a multi-currency model that allows the user to format using a selection from a number of different currencies e.g. USD, GBP, EUR etc with their relevant currency symbols.
An example of the code within the macro is as follows:
' For USD:
Selection.NumberFormat = _
"_-[$$-en-US]* #,##0_ ;[Red]_-[$$-en-US]* -#,##0 ;_-[$$-en-US]* ""-""??_ ;_-@_ "
' For EUR:
Selection.NumberFormat = _
"_-[$€-x-euro2] * #,##0_ ;[Red]_-[$€-x-euro2] * -#,##0 ;_-[$€-x-euro2] * ""-""_ ;_-@_ "
These all run perfectly.
I am attempting to provide a format for the Armenian DRAM. In Excel the default format is [$֏-hy-AM] however when I use it the dram currency symbol "֏" comes up as a "?" in the format. In other words the code gets changed to [$?-hy-AM]
Can anybody help me solve this problem.
Many thanks
I have a multi-currency model that allows the user to format using a selection from a number of different currencies e.g. USD, GBP, EUR etc with their relevant currency symbols.
An example of the code within the macro is as follows:
' For USD:
Selection.NumberFormat = _
"_-[$$-en-US]* #,##0_ ;[Red]_-[$$-en-US]* -#,##0 ;_-[$$-en-US]* ""-""??_ ;_-@_ "
' For EUR:
Selection.NumberFormat = _
"_-[$€-x-euro2] * #,##0_ ;[Red]_-[$€-x-euro2] * -#,##0 ;_-[$€-x-euro2] * ""-""_ ;_-@_ "
These all run perfectly.
I am attempting to provide a format for the Armenian DRAM. In Excel the default format is [$֏-hy-AM] however when I use it the dram currency symbol "֏" comes up as a "?" in the format. In other words the code gets changed to [$?-hy-AM]
Can anybody help me solve this problem.
Many thanks