Separating Text Numbers and symbols

Fenix187

New Member
Joined
Mar 20, 2017
Messages
17
Hi everyone, hope you are well and can assist me with this query.

My current data is showing up as $1,562K.

Need the data to separate so I only get 1562 etc.

I've already seen some previous formulas here which didn't work. Welcome to new formulas or VBA coding.

Thank you.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Hi Thanks for the assist earlier. the formula worked really well. Last question. When number dont appear on my excel cell, I am presented with " - " (dash: Keyboared key = after Zero, secondary function underscore _).

Thank you.
 
Upvote 0
Hi Thanks for the assist earlier. the formula worked really well. Last question. When number dont appear on my excel cell, I am presented with " - " (dash: Keyboared key = after Zero, secondary function underscore _).

Thank you.

Does this help?
 
Upvote 0
Does...

=SUBSTITUTE(SUBSTITUTE(UPPER(A2),"K",""),"$","")+0

work?
Do you really have to substitute the $ sign away? When I try this on my system, it works fine...

=SUBSTITUTE(UPPER(A2),"K","")+0

Did you have to do that because the $ sign is not the currency symbol for you local setting?
 
Upvote 0
Aladin Akyurek,

I had to change the following:

=if(a2="","",iferror(substitute(substitute(upper(a2),"k",""),"$","")+0,""))

To this:

=IF(A2="","",IFERROR(SUBSTITUTE(SUBSTITUTE(UPPER(A2),"K",""),"$","")+0,""))
 
Upvote 0
Aladin Akyurek,

I had to change the following:

=if(a2="","",iferror(substitute(substitute(upper(a2),"k",""),"$","")+0,""))

To this:

=IF(A2="","",IFERROR(SUBSTITUTE(SUBSTITUTE(UPPER(A2),"K",""),"$","")+0,""))

That was a vagary of the board software...

In fact:

=if(a2="","",iferror(substitute(substitute(upper(a2),"K",""),"$","")+0,""))

is okay too. But thanks.
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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