Image via Wikipedia
Sometimes when you import or cut paste a list of data into excel, you may find that extra / unwanted spacing appear before or after the text or numbers. This can sometime be quite irritating especially when you want to use these data to do some calculations or display it properly in the cell.
Below is one of the method to quickly get rid of these unwanted spacing.
A1 = "(space)test(space)(space)"B1 = trim(A1)
Copy B1 & Paste Special using Paste Value to C1
C1 = "test"
You can either hide the column A & B or just delete them. :)