€ Euro symbol in referenced cells...

RobbieC

Active Member
Joined
Dec 14, 2016
Messages
376
Office Version
  1. 2010
Platform
  1. 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:

Code:
=CONCATENATE(A108," £",I108)
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:

Code:
=CONCATENATE(A108," ",A1,I108)
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
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
if the euro will always be a euro, custom format the cell then you only need to add a value and not the sign, or format as that specific currency which does the same/similar
 
Upvote 0
The problem is that the currency sign is embedded into the formulas (and there are literally hundreds of them). That's why I thought I could reference a cell with the relevant symbol

However, even if I do a simple formula such as

Code:
=A1
the result always shows a |

all other currency signs work fine: £ $ ¥ etc... only the € won't show properly

Many of the cells contain formulas such as

Code:
=IF(I85<>0,CONCATENATE(G84," x ",A85,H85," £",I85),"")
which dynamically generates:

5 x flush covers (provided by client) @ £4 each = £20

so it's all contained within the same formula ready for output. Re-writing this entire sheet would be an absolute nightmare. I thought that referencing the currency symbol would be the simplest method.

Code:
=IF(I85<>0,CONCATENATE(G84," x ",A85,H85," ",[B]A1[/B],I85),"")

Custom formatting the cells to whichever currency will mean duplicating the sheet for each currency plus a re-write of every cell containing the number...

Why will Excel not allow me to reference the Euro sign directly from the source cell A1? Frustrating...
 
Upvote 0
What font are you using in the worksheet?

Can you isolate the pipe character, the "|", and tell us what =UNICHAR("|") returns?
 
Upvote 0

Forum statistics

Threads
1,215,350
Messages
6,124,430
Members
449,158
Latest member
burk0007

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top