VBS to split one column in two columns
问题 Let's say for example, i have one column filled with names, each name in one cell. First_Name_1 Last_Name_1 First_Name_2 Last_Name_2 First_Name_3 Last_Name_4 First name and last name are separated by space. How can i split this column in two columns, using Visual Basic Script so that i will have First_Name in one column and Last_name in a column next to it? Already tried this code, but can't manage to make it work. objExcel.ActiveSheet.Columns(4).Select Do Until IsEmpty(ActiveCell) 'Search