Hello,
I have a worksheet where I have several currency options, and all the values are converted based on the currency selected. I have also added the a macro to format the cells using the symbol for the currency selected. The code I am using is below:
Currency_Symbol = Range("G2").Value
Range("D23:M23").NumberFormat = Currency_Symbol & " #,##0.0000"
In cell G2, I have the following formula:
if(C2="USD",char(36),if(C2="GBP",char(163),char(36))) <- Simplified here to only have dollars, pounds, and euros
This works perfectly, and formats the cells correctly based on the currency selected.
My problem is that this worksheet is used by users all over the world. When my British user uses the worksheet, if she selects USD, it still displays the currency symbol as pounds. If she sends it to me, it works fine with either currency, so I cannot replicate her issue using my version of Excel. I assume that this is some sort of formatting issue, but am not sure.
Does anyone have any suggestions for how to make this work on my colleague's British version of Excel?
Thanks for your help!
Mark
I have a worksheet where I have several currency options, and all the values are converted based on the currency selected. I have also added the a macro to format the cells using the symbol for the currency selected. The code I am using is below:
Currency_Symbol = Range("G2").Value
Range("D23:M23").NumberFormat = Currency_Symbol & " #,##0.0000"
In cell G2, I have the following formula:
if(C2="USD",char(36),if(C2="GBP",char(163),char(36))) <- Simplified here to only have dollars, pounds, and euros
This works perfectly, and formats the cells correctly based on the currency selected.
My problem is that this worksheet is used by users all over the world. When my British user uses the worksheet, if she selects USD, it still displays the currency symbol as pounds. If she sends it to me, it works fine with either currency, so I cannot replicate her issue using my version of Excel. I assume that this is some sort of formatting issue, but am not sure.
Does anyone have any suggestions for how to make this work on my colleague's British version of Excel?
Thanks for your help!
Mark