LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Macro for Data Mining

Ok, I will make this question as easy as possibly.

I have some data from a survey that was done.

I have compiled it in the following manner:
A1 = Client Name; B2 = Comment 1; C3 = Comment 2, ect up to 13.

Now, I have created a sample template in a worksheet that I want each
clients data to show up there automatically. I have figured out the macro to
bring new tabs into the workbook based on how many clients, but I cannot
figure out how to bring the data from the survey to each respective
worksheet. This is the macro to automatically add the sheets.

Sub Create_Client_Sheets()
Dim MyCell As Range, MyRange As Range

Set MyRange = Sheets("Client Info").Range("a2")
Set MyRange = Range(MyRange, MyRange.End(xlDown))
For Each MyCell In MyRange
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = MyCell.Value
Next MyCell
End Sub

So in essence here is what I want:
When I run the macro each client will have their own worksheet with their
survey data in it, the reason for seperate workbooks is we will review the
data with each client.

Hope this is enough information.
Thanks in advance for the help.
 
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
how to create data cubes in data mining using excel 2007? raghavenderkanduri Excel Worksheet Functions 0 August 13th 09 02:29 PM
Data Mining and Hyperlink Automation Macro Help binar[_2_] Excel Discussion (Misc queries) 0 February 12th 09 10:46 PM
Need help for data mining johnnyk Excel Worksheet Functions 4 October 24th 08 09:27 PM
Data mining Mike Excel Programming 2 November 30th 07 04:48 PM
Data mining blubyeu Excel Programming 1 April 15th 06 01:21 AM


All times are GMT +1. The time now is 08:11 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"