Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ok first let me tell you want I want to do.
I want to have an input box pop up and ask for any number of stock tickers. Place those tickers in a column. Use those symbols with web query to get all the info from clearstation which will be on these pages on the web site. Profile Key Ratios Analysts Earnings Insiders for each symbol on a different work sheet use that info to make a summay of all the symbols on the first worksheet. So let's start with question and I will go from there. How do I make input box that will take an array of stock symbols and put them in 1 column, each in it's own cell? ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I make input box that will take an array of stock symbols and
put them in 1 column, each in it's own cell? If you mean one element at a time: Private Sub Macro1() Dim strIn As String Do strIn = InputBox("Enter data.") iRow = iRow + 1 Sheets("Sheet1").Cells(iRow, 1) = strIn Loop Until strIn = "" End Sub HTH, Merjet |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excell error "Can't find Project or Library" Project VBAProject | Excel Worksheet Functions | |||
project | Excel Worksheet Functions | |||
How to convert MS Project to MS Excel. I don't have MS Project. | Excel Discussion (Misc queries) | |||
Help with a project | Excel Discussion (Misc queries) | |||
Need a project. | New Users to Excel |