I have file that was converted into excel spreadsheet from another program. In column B each cell may contain a entry that is comma delimited. I need to convert each cell that has a comma delimited entry to seperate rows under the original cell and to remove the space after the comma.
Example: Before
-------------Column B
Cell 1 Asset Management, Brokerage, Commercial Banking
Example: After
-------------Column B
Cell 1 Asset Management
Cell 2 Brokerage
Cell 3 Commercial Banking
Example: Before
-------------Column B
Cell 1 Asset Management, Brokerage, Commercial Banking
Example: After
-------------Column B
Cell 1 Asset Management
Cell 2 Brokerage
Cell 3 Commercial Banking