Dais Helper
New Member
- Joined
- Jun 11, 2020
- Messages
- 11
- Office Version
- 365
- Platform
- Windows
Hello. I don't think this is a duplicate query.
I have a Roster I'm managing and some students have former surnames that I'm tracking because in older paperwork they'll have the former surname and newer paperwork they'll have the current surname.
I have their name column (D) listed like this: Surname, Forename -or- Surname (Former Surname), Forename
PART I: The Name Flip
PART II: The Former Surname Isolated
My Current Results:
What I want My Results to Be:
Please note: I actually do not understand Formulas or how anything works. I have tried to read the explanations, but I think since I'm usually at work on a time crunch, I can't seem to process the words. I can manage to pop Formulas into cells and through trial and error. Then find one that works with replacing my cells instead. And sometimes I tweak a little bit based on ones I've tried before and get success. The VBA Coding scares me and I'm uncomfortable using it and so I implement it very, very infrequently, I don't attempt to tweak these much at all - just whatever the tutorial says. I prefer to work with the formulas.
Thank you very much in advance for your time and assistance.
I have a Roster I'm managing and some students have former surnames that I'm tracking because in older paperwork they'll have the former surname and newer paperwork they'll have the current surname.
I have their name column (D) listed like this: Surname, Forename -or- Surname (Former Surname), Forename
Ex. 1 in D3: Smith, Thomas
Ex. 2 in D4: Baker (Abram), Kate
PART I: The Name Flip
I have column F using the following formula:
=TRIM(MID(D4&" "&D4,FIND(",",D4)+1,LEN(D4)))
Results in F3: Thomas Smith -- excellent, no issues
Results in F4: Kate Baker (Abram) -- This is okay-ish...
However is there a way to tweak this formula to remove the parentheses and the text inside the parentheses to just read Kate Baker?
PART II: The Former Surname Isolated
I have column E using the following formula I just found this morning:
=MID(D4,FIND("(",D4)+1,FIND(")",D4)-FIND("(",D4)-1)
Results in E4: Abram -- This is excellent
Results in E3: #VALUE! -- yuck
Is there a way to tweak this formula to return nothing in the cells like E3? I don't want #VALUE! showing.
Currently I have conditional formatting making the text and the cell a shade of light grey so the resulting former surnames stand out in column E.
My Current Results:
Surname, Forename (Col. D) | Former Surname (Col. E) | Forename Surname (Col. F) |
Smith, Thomas | #VALUE! | Thomas Smith |
Baker (Abram), Kate | Abram | Kate Baker (Abram) |
What I want My Results to Be:
Surname, Forename (Col. D) | Former Surname (Col. E) | Forename Surname (Col. F) |
Smith, Thomas | Thomas Smith | |
Baker (Abram), Kate | Abram | Kate Baker |
Please note: I actually do not understand Formulas or how anything works. I have tried to read the explanations, but I think since I'm usually at work on a time crunch, I can't seem to process the words. I can manage to pop Formulas into cells and through trial and error. Then find one that works with replacing my cells instead. And sometimes I tweak a little bit based on ones I've tried before and get success. The VBA Coding scares me and I'm uncomfortable using it and so I implement it very, very infrequently, I don't attempt to tweak these much at all - just whatever the tutorial says. I prefer to work with the formulas.
Thank you very much in advance for your time and assistance.