brasqo
New Member
- Joined
- Jul 10, 2019
- Messages
- 9
- Office Version
- 365
- Platform
- Windows
Hi everyone,
Hoping someone could point me in the right direction.
I have a worksheet with multiple sheets that are all identical in layout (an export from another program)
I need to trim one cell (F12) in each of these sheets.
I've used the following formula on a cell to have it trim correctly and apply the trimmed output to a different cell (trimmed Cell A1, and put the result in B1 for example).. :
But in this case, I need the trimming and application to to occur on the same cell.
IE: I need "Hello HDC05- Hxxxx / HDC00" in cell F12 to become "HDC00" in the same F12 cell.
Each sheet has a different value in F12, but in the same format as the example above.
Any direction in figuring this out would be appreciated.
Thank you!
Hoping someone could point me in the right direction.
I have a worksheet with multiple sheets that are all identical in layout (an export from another program)
I need to trim one cell (F12) in each of these sheets.
I've used the following formula on a cell to have it trim correctly and apply the trimmed output to a different cell (trimmed Cell A1, and put the result in B1 for example).. :
Code:
TRIM(RIGHT(A1,FIND(" ", A1)+1))
But in this case, I need the trimming and application to to occur on the same cell.
IE: I need "Hello HDC05- Hxxxx / HDC00" in cell F12 to become "HDC00" in the same F12 cell.
Each sheet has a different value in F12, but in the same format as the example above.
Any direction in figuring this out would be appreciated.
Thank you!