I have 2 spreadsheets to compare. I need to perform a search on 1 column, 'Episodes Missing from Master' in the Spreadsheet1 to see if any of the numbers appear in the Spreadsheet2. Everything has to be copied to Spreadsheet3, with details on the episodes found or not found. Spreadsheet3 requires a new column that features the Episodes found or not found. However, there are a few problems:
1) The Spreadsheet1's 'Missing from Master' column is a comma delimited list.
2). If the column 'Missing from Master' cell reads, ‘NOT ON SHEET’, then I need to read from the column 'Episodes' to actually get the number to search on Spreadsheet1.
3) The 'Episodes' column in Spreadsheet1 also features comma delimited lists in many of the cells!
What is the smoothest way to search, compare from the comma delimited lists, and then write the contents Spreadsheet1 plus the results to Spreadsheet3?
1) Is it best to first clean up the first worksheet, by splitting the values of the Comma Delimited lists in the column 'missing from cue sheet' and the 'Episodes' column of the Outside Spreadsheet
2) Perform the search and comparisons in the worksheets?
3) Then Copy results to the final worksheet?
My VB is rusty, as I have been programming in C# for years. But I imagine that I need to do a split function for my first option? Any suggestions are appreciated.
1) The Spreadsheet1's 'Missing from Master' column is a comma delimited list.
2). If the column 'Missing from Master' cell reads, ‘NOT ON SHEET’, then I need to read from the column 'Episodes' to actually get the number to search on Spreadsheet1.
3) The 'Episodes' column in Spreadsheet1 also features comma delimited lists in many of the cells!
What is the smoothest way to search, compare from the comma delimited lists, and then write the contents Spreadsheet1 plus the results to Spreadsheet3?
1) Is it best to first clean up the first worksheet, by splitting the values of the Comma Delimited lists in the column 'missing from cue sheet' and the 'Episodes' column of the Outside Spreadsheet
2) Perform the search and comparisons in the worksheets?
3) Then Copy results to the final worksheet?
My VB is rusty, as I have been programming in C# for years. But I imagine that I need to do a split function for my first option? Any suggestions are appreciated.