A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hello,
please explain the logic that identifies a ghost number. From your description it sounds as if
- if the sum of the last two numbers in any given column is present in either rows 2, 3 or 4 of that column, then the two are ghost numbers.
Does that work? If so, don't all columns contain ghost numbers?
Column 1: 6+1 = 7 and 7 is in row 4
Column 2: 2+4 = 6 and 6 is in row 4
Column 3: nothing +8 = 8, in rows 2 - 4
Column 4: 8+0 = 8, which is in rows 3 and 4
etc.
A formula that can identify them would be
=IF(ISNUMBER(MATCH(SUM(A8:A9),A2:A4,0)),"ghost","")
If that is NOT how ghost numbers are identified, can you please explain the logic that DOES?