PDA

View Full Version : concatenate num



mahmoud-lee
12-30-2013, 12:21 AM
I want to merge these two figures
I use Office 2003

PcMax
12-30-2013, 03:16 AM
Hi,

One possible solution!
I was inspired here: http://www.excelfox.com/forum/f13/extract-number-from-alphanumeric-text-186/

Excel Fox
12-30-2013, 06:55 AM
Good thinking PcMax. That would be especially helpful if there are other non-numeric characters also.

If there's only going to be as it is now (with that one non-printable character having ascii code 160), then you could also use a simple substitution

=SUBSTITUTE(A2,CHAR(160),"")&TEXT(SUBSTITUTE(B2,CHAR(160),""),"0000")

mahmoud-lee
12-30-2013, 06:05 PM
Thank you fantastic