Quote from nicepair111:
Step 6: Several columns of symbols appear on the âresultsâ page. Yahoo only allows scanning 200 symbols at a time so each column represents a scan of 200 symbols. The columns are the symbols that meet the criteria selected on the âWatch Listâ page (float between 5M and 60M; average volume > 200,000; EPS > 0; price between $10 and $50.) These columns can then be copied and pasted into a watchlist at wealthlab and scanned for rank. (You can only scan 100 at a time at wealthlab.)
Hi Nicepair111 , thanx a ton for the spreadsheet. It has saved me hours of work. Can you just make one more modification to it ? To copy all the symbols from the results worksheet to a seperate sheet in one single column ? I tried it with the following code but it just copied the list as it is without sorting it in a single column. thanx for your help.
Sub Button1_Click()
Sheets("Results").Select
Range("A1:R209").Select
Selection.Copy
Sheets("Tickers").Select
ActiveSheet.Paste
End Sub