Getting rid of arrows in cells

blackystrat

New Member
Joined
Aug 5, 2014
Messages
26
This is my first post at MrExcel.com

I have a spreadsheet in Excel 2007 containing hundreds of thousands of data. Several cells in the sheet have a right facing arrow at the beginning of certain cells and it seems that I cannot even copy that arrow to replace it with nothing

It looks like this

346b1u9.jpg


please advise me on how I can batch remove these arrows from the sheet

Many thanks
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
blackystrat,

Welcome to MrExcel.

Is it possible that the arrow is e.g. 'g' of the Wingdings3 character set?

Can you interrogate a sample cell similar to below?

Then a possibility for replacement could be to replace first character of string, if e.g. 'g' with "" as it is unlikely that any wanted text will start with e.g. lower case g.

In A2 on the actual sheet it shows an arrow as per your image >> Arrowsome stuff but does not render here as such.


Excel 2007
ABCD
1TextArrow characterChar codeCleaned up
2gsome stuffg103some stuff
3gsome stuffsome stuff
4Gsome stuffGsome stuff
Input
Cell Formulas
RangeFormula
B2=LEFT(A2,1)
C2=CODE(B2)
D2=IF(CODE(LEFT(A2,1))=103,REPLACE(A2,1,1,""),A2)



Hope that helps.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,526
Messages
6,160,341
Members
451,638
Latest member
MyFlower

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