latticeman
New Member
- Joined
- Aug 28, 2017
- Messages
- 6
Hello,
I have been attempting to make a spreadsheet for my fantasy football league draft. In the spreadsheet, I have a searchable dropdown list which I constructed using this tutorial: How to create a searchable drop down list in Excel?.
My data is taken from a dynamic web query, and my dropdown list is for the names of all of the football players. However, I run into a problem when pasting the three columns required. My formula seems to work for the first 197 lines. However, once I get down to line 198, one of the counters increments by an additional number. All I am doing is copying and pasting the single cell into the whole range, so I am not sure what the problem could be. Here is the formula I start off with in cell N2:
Thus, once I get down to cell N198, I would expect it to be
However, for some reason, even though the line above is correct with B198 as the last address, the formula for N198 is depicted as
As can be seen, an additional 1 is added to the final number for no apparent reason, and this continues through the remaining three lines. Is there any reason for this error, and anything I could do to fix it?
If there is any additional clarification needed, I would be happy to provide it. Thanks!
I have been attempting to make a spreadsheet for my fantasy football league draft. In the spreadsheet, I have a searchable dropdown list which I constructed using this tutorial: How to create a searchable drop down list in Excel?.
My data is taken from a dynamic web query, and my dropdown list is for the names of all of the football players. However, I run into a problem when pasting the three columns required. My formula seems to work for the first 197 lines. However, once I get down to line 198, one of the counters increments by an additional number. All I am doing is copying and pasting the single cell into the whole range, so I am not sure what the problem could be. Here is the formula I start off with in cell N2:
Code:
=--ISNUMBER(IFERROR(SEARCH($I$2,Rankings!$B2),""))
Thus, once I get down to cell N198, I would expect it to be
Code:
=--ISNUMBER(IFERROR(SEARCH($I$2,Rankings!$B199),""))
However, for some reason, even though the line above is correct with B198 as the last address, the formula for N198 is depicted as
Code:
=--ISNUMBER(IFERROR(SEARCH($I$2,Rankings!$B200),""))
As can be seen, an additional 1 is added to the final number for no apparent reason, and this continues through the remaining three lines. Is there any reason for this error, and anything I could do to fix it?
If there is any additional clarification needed, I would be happy to provide it. Thanks!