Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Help with a project. Help me please.

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 812
Default Help with a project. Help me please.

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excell error "Can't find Project or Library" Project VBAProject Lost in Excel Excel Worksheet Functions 0 April 12th 07 04:42 PM
project jorge Excel Worksheet Functions 0 March 28th 07 07:28 PM
How to convert MS Project to MS Excel. I don't have MS Project. Jane Excel Discussion (Misc queries) 1 February 20th 06 10:01 PM
Help with a project MC82 Excel Discussion (Misc queries) 3 January 20th 06 12:11 AM
Need a project. bach New Users to Excel 6 August 30th 05 09:47 AM


All times are GMT +1. The time now is 04:22 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"