I am trying to load the following information into Excel and would like to flatten the following text into a Colon Separated Table.
Basically I am trying to separate the words between " - ".
Thanks in advance.
Code: Select all
1. Centura for Beginners to Programming
START1_Questions - Workbook QUESTIONS
START1_Answers - Workbook ANSWERS
START1_Orientation - START1 - Orientation
START1_01 - Lesson 1 - What is Computer Programming?
START1_02 - Lesson 2 - Computer Programming Workflow
START1_03 - Lesson 3 - Obtaining the Tools You'll Need
2. Oracle for Beginners to Programming
START2_Questions - Workbook QUESTIONS
START2_Answers - Workbook ANSWERS
START2_01 - Lesson 1 - What is Computer Programming?
START2_02 - Lesson 2 - Computer Programming Workflow
START2_03 - Lesson 3 - Obtaining the Tools You'll Need
START2_04 - Lesson 4 - Creating a User Interface
Code: Select all
"1":"Centura for Beginners to Programming":"START1_Questions":"Workbook QUESTIONS"
"1":"Centura for Beginners to Programming":"START1_Answers":"Workbook ANSWERS"
"1":"Centura for Beginners to Programming":"START1_Orientation":"START1":"Orientation"
"1":"Centura for Beginners to Programming":"START1_01":"Lesson 1":"What is Computer Programming?"
"1":"Centura for Beginners to Programming":"START1_02":"Lesson 2":"Computer Programming Workflow"
"1":"Centura for Beginners to Programming":"START1_03":"Lesson 3":"Obtaining the Tools You'll Need"
"2":"Oracle for Beginners to Programming":"START2_Questions":"Workbook QUESTIONS"
"2":"Oracle for Beginners to Programming":"START2_Answers":"Workbook ANSWERS"
"2":"Oracle for Beginners to Programming":"START2_01":"Lesson 1":"What is Computer Programming?"
"2":"Oracle for Beginners to Programming":"START2_02":"Lesson 2":"Computer Programming Workflow"
"2":"Oracle for Beginners to Programming":"START2_03":"Lesson 3":"Obtaining the Tools You'll Need"
"2":"Oracle for Beginners to Programming":"START2_04":"Lesson 4":"Creating a User Interface"
Thanks in advance.