Hi everyone
I had to manipulate some data today for a boring data entry task. I managed to do what I wanted with what knowledge of Excel I have but I do not know a more efficient way of doing what I wanted, even though I'm 100% positive there will be a more efficient way.
Without using VB what would be some examples of simpler methods?
The info I was given is in Columns A & B
The info I wanted is in Columns G & H
You can see how I got the info
Thanks in advance for any time that's taken up replying to my question.
I had to manipulate some data today for a boring data entry task. I managed to do what I wanted with what knowledge of Excel I have but I do not know a more efficient way of doing what I wanted, even though I'm 100% positive there will be a more efficient way.
Without using VB what would be some examples of simpler methods?
The info I was given is in Columns A & B
The info I wanted is in Columns G & H
You can see how I got the info
example XL.xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | Matt | Smith | matt | smith | Mattsmith | Mattsm | Mattsm!35 | matt.smith.app | ||
2 | Mark | Jones | mark | jones | Markjones | Markjo | Markjo!35 | mark.jones.app | ||
3 | Jeremy | Crooks | jeremy | crooks | Jeremycrooks | Jeremy | Jeremy!35 | jeremy.crooks.app | ||
4 | Susan | Harrison | susan | harrison | Susanharrison | Susanh | Susanh!35 | susan.harrison.app | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C1:D4 | C1 | =LOWER(A1) |
E1:E4 | E1 | =TEXTJOIN(,TRUE,A1,D1) |
F1:F4 | F1 | =LEFT(E1,6) |
G1:G4 | G1 | =TEXTJOIN(,TRUE,F1,"!35") |
H1:H4 | H1 | =TEXTJOIN(".",TRUE,C1,D1,"app") |
Thanks in advance for any time that's taken up replying to my question.