Is there a way to remove the last two characters from a field?
Excel: How to remove 9 characters from left & 2 characters from right. Text string remaining varies in length. (LEFT & RIGHT in single formula?)
Tip for beginners: Remove first & last characters from text
How to use Left formula to extract text before a ":" character ?
Does WPS Spreadsheets have functions for removing characters from the left side?
How can I pad cells to a fixed length in Excel?
Can I extract specific words from a cell in Excel?
Hi, I need to find the elapsed time between the start and the end of kids taking a test. The program showed start and end times, but it puts CT (central time) at the end, which means i can't just use a formula to calculate the difference. (For example, 02/14/24 08:02:15 AM CT) for both fields.
Is there a way to TRUNC or something with text? It works if I remove CT manually, but it's a big project so I don't really want to do that 1200 times.
Hello,
If ALL your original data values end with a space and a dot and start with "Company: " as in
Company: some data .
Then you can use
=MID(A1,10,LEN(A1)-11)
You missed the MID function :)
=MID(A1,9,LEN(A1) - 11)
Thanks Graham: Looks like the precise answer I need in my particular example is
=MID(A1,10,LEN(A1) - 11)