In my Excel for a cell I check the condition and wants to apply the currency format,
- USD (For Example : USD 44.345)
- EUR (For Example : EUR 11.000)
I tried to apply like below:
MyRange.FormatConditions(1).NumberFormat = "##0.0###"
I'm able to add text after the value like below:
MyRange.FormatConditions(1).NumberFormat = "##0.0###"" My text"""
But I need to add currency text before the price.
Please help me to acheive the above currency format.
"USD" ##0.0###? - BigBen"[$EUR] #,##0.00"and"[$USD] #,##0.00"? - JvdV