I have two columns of numeric values in Excel. This is a task list, column A is the task number, column C shows the number of any tasks that must be done before this task. Both columns are formatted as "General".
I want to highlight cells in column A that are listed as parents in column C. In some cases, a task might have more than one parent so the cell might have more than one number in it:
6, 17, 105
My data spans from rows 6 through 1004 and I've tried the following:
=ISNUMBER(SEARCH($A6,$C6:$C1004))
That works fine in other situations when I'm dealing with text, but not when the data is numbers. At least that's my theory for why it's not working here.
I've tried searching here and a general web search, but all the answers seem to apply to text data not numbers. How can I accomplish this with numeric data?
Edit:
Here's a screenshot of some of the data:
First column is the task number, third is a listing of "parent" task for the given task. For example, looking at task 81 at the bottom, it can't be done until tasks 17, 64 and 84 are done. What I want to do is format any task number that has children. So, in the example I just mentioned, task 84 (near the top) should be colored differently since it has a "child".