I have a list of filenames in a spreadsheet in the form of "Smith, J. 010112.pdf". However, they're in the varying formats of "010112.pdf", "01.01.12.pdf", and "1.01.2012.pdf". How could I change these to one format of "010112.pdf"?
|
Personally I hate using VBA where worksheet functions will work, so I've worked out a way to do this with worksheet functions. Although you could cram this all into one cell, I've broken it out into a lot of independent steps in separate columns so you can see how it's working, step by step. For simplicity I'm assuming your file name is in A1 B1 =LEN(A1) C1 =SUBSTITUTE(A1," ","") D1 =LEN(C1) E1 =B1-D1 F1 =SUBSTITUTE(A1," ",CHAR(8),E1) G1 =SEARCH(CHAR(8), F1) H1 =LEFT(A1,G1-1) I1 =MID(A1,G1+1,255) J1 =FIND(".",I1) K1 =FIND(".",I1,J1+1) L1 =FIND(".",I1,K1+1) M1 =MID(I1,1,J1-1) N1 =MID(I1,J1+1,K1-J1-1) O1 =MID(I1,K1+1,L1-K1-1) P1 =TEXT(M1,"00") Q1 =TEXT(N1,"00") R1 =TEXT(O1,"00") S1 =IF(ISERR(K1),M1,P1&Q1&R1) T1 =H1&" "&S1&".pdf" It's kind of a mess because Excel hasn't added a single new string manipulation function in over 20 years, so things that should be easy (like "find last space") require severe trickery. |
|||||||||||||||||||
|
|
This function below works. I've assumed that the date is in
This uses the following helper function:
To test:
They all return |
||||
|
|
|
Here's a screenshot of a simple four-step method based on Excel commands and formulas, as suggested in a comment to the answered post (with a few changes)...
|
|||||
|
|
You don't need VBA. Start by replacing the "."s with nothing:
This will change the ".PDF" to "PDF", so let's put that back:
|
|||||||||
|
DISCLAIMER:As @Jean-FrançoisCorbett has mentioned, this does not work for
I used this as a testcase, which does not correctly cover all your examples:
|
||||
|
|
|
Got awk? Get the data into a text file, and
Assuming the data are exactly as what you described, e.g., Smith, J. 010112.pdf |
||||
|
|

