RobbieC
Active Member
- Joined
- Dec 14, 2016
- Messages
- 376
- Office Version
- 2010
- Platform
- Windows
Hi there, I have a huge speadsheet, originally written with £'s in mind
I have been given the task of turning it into a multi-currency sheet. It has literally hundreds of cells with formulas such as:
where the £ sign is integrated into the formula...
I have made cell A1 my 'variable cell' which I can change to the correct currency as required, for example A1 = $, there fore the new formula is:
and so on...
This works fine for all currencies apart from the Euro sign € the result just comes out as |
I've tried formatting the cell A1 as text, tried chr(128), but nothing is changing the | to a €
What do I do? If you can point me in the right direction, I'd be eternally gratefull
Thanks
I have been given the task of turning it into a multi-currency sheet. It has literally hundreds of cells with formulas such as:
Code:
=CONCATENATE(A108," £",I108)
I have made cell A1 my 'variable cell' which I can change to the correct currency as required, for example A1 = $, there fore the new formula is:
Code:
=CONCATENATE(A108," ",A1,I108)
This works fine for all currencies apart from the Euro sign € the result just comes out as |
I've tried formatting the cell A1 as text, tried chr(128), but nothing is changing the | to a €
What do I do? If you can point me in the right direction, I'd be eternally gratefull
Thanks