I'm trying to format an excel column for the currency format.
excelWorksheet.Range["S1", "S" + linhas].NumberFormat = "R$ #.###,00"
However, this causes you to format "RR $ 3500.00".
In the cell is 3500 and I would like it to be: $ 3,500.00 that doing on the hand would be changing the data for currency and the symbol for R $.
Thank you.