Reorganize Existing Datum With Text Formula

jbesr1230

Board Regular
Joined
Oct 16, 2004
Messages
96
I have been given many existing data coded as follows "EXMPL1A 05/25/2018 2,150.00 D" (without quote marks) each datum is this format: a descriptor, space, date in mm/dd/yyyy, space, Amount numeric with 2 places to the right of the decimal, space, alpha-character.

I need to convert the example above to this: EXMPL1A180525D2150. This is: Descriptor, yymmdd, alpha-character, numeric (without the comma and the .00). For clarification (Descriptor) EXMPL1A - (date - yymmdd); 180525 - (alpha-character) D; (amount-if cents is .00 exclude the .00, if cents is ###.#0 exclude the final 0) so 2150.

More examples:

ABCD 06/15/2018 93.50 G - CONVERT TO: ABCD180615G93.5
PVHW3Q 07/12/2018 1450.00 I - CONVERT TO: PVHW3Q180712I1450
THQR 08/17/2019 65.25 K - CONVERT TO: THQR 190817K65.25

Thank you.

JB
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
JB, if your raw data were in A1, place the following in B1 to convert:

Code:
=LEFT(A1,FIND(" ",A1)-1)&MID(A1,FIND(" ",A1,FIND(" ",A1)+1)-2,2)&REPLACE(MID(A1,FIND(" ",A1)+1,5),3,1,"")&RIGHT(A1,1)&TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(MID(A1,FIND(" ",A1,FIND(" ",A1)+1),10),",",""),MID(A1,FIND(".",A1),3),""),RIGHT(A1,1),""))&IF(VALUE(MID(A1,FIND(".",A1),3))>0,VALUE(MID(A1,FIND(".",A1),3)),"")
 
Last edited:
Upvote 0
Actually, the formula above has one glitch I just noticed. Use the following shorter formula:

Code:
=LEFT(A1,FIND(" ",A1)-1)&TEXT(MID(A1,FIND(" ",A1)+1,10),"yymmdd")&RIGHT(A1,1)&VALUE(SUBSTITUTE(MID(A1,FIND(" ",A1,FIND(" ",A1)+1),10),RIGHT(A1,2),""))
 
Last edited:
Upvote 0
=LEFT(A1,FIND(" ",A1)-1)&TEXT(LEFT(REPLACE(A1,1,FIND(" ",A1),""),10),"yymmdd")&RIGHT(A1)&SUBSTITUTE(TRIM(REPLACE(A1,1,FIND("#",SUBSTITUTE(A1," ","#",2))-1,"")),RIGHT(A1),"")+0

where A1 houses a tring to convert.
 
Upvote 0
Another way,


Unknown
AB
1EXMPL1A 25/05/2018 2,150.00 DEXMPL1A180525D2150
2ABCD 15/06/2018 93.50 GABCD180615G93.5
3PVHW3Q 12/07/2018 1450.00 IPVHW3Q180712I1450
4THQR 17/08/2019 65.25 KTHQR190817K65.25
Sheet8
Cell Formulas
RangeFormula
B1=LEFT(A1,FIND(" ",A1)-1)&TEXT((MID(A1,FIND(" ",A1)+1,10)),"yymmdd")&RIGHT(A1,1)&MID(LEFT(A1,LEN(A1)-2),SEARCH("??/??/????",A1)+11,100)+0
 
Last edited:
Upvote 0
JB

None of the suggestions so far work for me*, but that may well be due to different system date formats so one or all may work for you. :)
* For me, the above formulas all return "EXMPL1A05/25/2018D2150"

In case they don't work for you either, this worked for me, and should work on any date system if your sample data is representative.

Excel Workbook
AB
1DataResult
2EXMPL1A 05/25/2018 2,150.00 DEXMPL1A180525D2150
3ABCD 06/15/2018 93.50 GABCD180615G93.5
4PVHW3Q 07/12/2018 1450.00 IPVHW3Q180712I1450
5THQR 08/17/2019 65.25 KTHQR190817K65.25
Extract Info from text
 
Last edited:
Upvote 0
It works for me...


Book1
ABC
1ABCD 06/15/2018 93.50 GABCD180615G93.5ABCD180615G93.5
2PVHW3Q 07/12/2018 1450.00 IPVHW3Q180712I1450PVHW3Q180712I1450
3THQR 08/17/2019 65.25 KTHQR 190817K65.25THQR190817K65.25
4EXMPL1A 05/25/2018 2,150.00 DEXMPL1A180525D2150EXMPL1A180525D2150
5
6inputdesired outputformula result
7
Sheet1
Cell Formulas
RangeFormula
C1=LEFT(A1,FIND(" ",A1)-1)&TEXT(LEFT(REPLACE(A1,1,FIND(" ",A1),""),10),"yymmdd")&RIGHT(A1)&SUBSTITUTE(TRIM(REPLACE(A1,1,FIND("#",SUBSTITUTE(A1," ","#",2))-1,"")),RIGHT(A1),"")+0
 
Upvote 0
It works for me...
I don't doubt that. .. or that Erik's or Nishant's work for them. .. and they may well work for the OP. However, date issues can be sensitive to regional settings so I was offering an alternative that was not dependant on such settings.
Here's my sheet with the various options.

Excel Workbook
ABCDE
1DataPeterErikAladinNishant
2EXMPL1A 05/25/2018 2,150.00 DEXMPL1A180525D2150EXMPL1A05/25/2018D2150EXMPL1A05/25/2018D2150EXMPL1A05/25/2018D2150
3ABCD 06/15/2018 93.50 GABCD180615G93.5ABCD06/15/2018G93.5ABCD06/15/2018G93.5ABCD06/15/2018G93.5
4PVHW3Q 07/12/2018 1450.00 IPVHW3Q180712I1450PVHW3Q181207I1450PVHW3Q181207I1450PVHW3Q181207I1450
5THQR 08/17/2019 65.25 KTHQR190817K65.25THQR08/17/2019K65.25THQR08/17/2019K65.25THQR08/17/2019K65.25
Extract Info from text
 
Last edited:
Upvote 0
The real generality would be possible if Excel could parse a format specification in-between double quotes. Otherwise, handling date strings like

2015-05-20
2015/05/20
2015.05.20

and who knows what else would be thwarting to process.
 
Upvote 0
Many thanks to all of you - Erik, Aladin, Peter, Nishant94 !!. On my system, all your formulas worked. I'm not accomplished enough in working with text formulas to understand the discussion between Peter and Aladin; but that's why they're "MrExcel MVP" status and I'm glad they're willing to be so helpful.


Best to you all.

JB
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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