PC Review


Reply
Thread Tools Rate Thread

Create tables on multiple sheets from list

 
 
monden2
Guest
Posts: n/a
 
      12th Apr 2010
Hey everyone,

I have been tinkering around with excel a bit, and I am curious is I could
get the following done in a macro.

I have a sheet with some lists. Each list has different values from the
other list. Now I want to combine these lists into a table (not a pivot,
because data has to be inserted later) along with a calendar, maybe in a
template if that makes it easier, and then add new sheets with the name and
referenced table according to the lists. To give the example, starting from
A1 on Sheet 1.


List A List B List C Calendar
1 2 3 January
4 5 6 Feb


Then I want to have the following to end up in a table and be put in a new
sheet

Sheet 2 (named List A "Something")

List A January February
# Days % # Days
%
1 'manual input' 'formula here' 'manual input' 'formula
here'
4 'manual input' 'formula here' 'manual input' 'formula
here'

Sheet 3 (named List B "Something")

List B January February
# Days % # Days
%
2 'manual input' 'formula here' 'manual input' 'formula
here'
5 'manual input' 'formula here' 'manual input' 'formula
here'

And so on, untill it has processed all the lists. (There are now 4 in total,
but more can be added later). Regarding the formula, I am planning to put a
'manual input'/vlookup(###) kind of formula in there.

This is, for me, quite difficult, and I am not sure if that is even
possible. Maybe making a template of the tables are better, I have no idea.
Haha. But any help is welcome.

Thanks!
 
Reply With Quote
 
 
 
 
Don Guillett
Guest
Posts: n/a
 
      12th Apr 2010

What you want is doable but you may want to consider keeping on ONE
sheet>adding a column a,b,c and then using data>filter>autofilter>>>>>
List etc
1
2
3
4
5
6

--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"monden2" <(E-Mail Removed)> wrote in message
news:0B2BFD14-3FAA-4698-9DC6-(E-Mail Removed)...
> Hey everyone,
>
> I have been tinkering around with excel a bit, and I am curious is I could
> get the following done in a macro.
>
> I have a sheet with some lists. Each list has different values from the
> other list. Now I want to combine these lists into a table (not a pivot,
> because data has to be inserted later) along with a calendar, maybe in a
> template if that makes it easier, and then add new sheets with the name
> and
> referenced table according to the lists. To give the example, starting
> from
> A1 on Sheet 1.
>
>
> List A List B List C Calendar
> 1 2 3 January
> 4 5 6 Feb
>
>
> Then I want to have the following to end up in a table and be put in a new
> sheet
>
> Sheet 2 (named List A "Something")
>
> List A January
> February
> # Days % # Days
> %
> 1 'manual input' 'formula here' 'manual input' 'formula
> here'
> 4 'manual input' 'formula here' 'manual input' 'formula
> here'
>
> Sheet 3 (named List B "Something")
>
> List B January
> February
> # Days % # Days
> %
> 2 'manual input' 'formula here' 'manual input' 'formula
> here'
> 5 'manual input' 'formula here' 'manual input' 'formula
> here'
>
> And so on, untill it has processed all the lists. (There are now 4 in
> total,
> but more can be added later). Regarding the formula, I am planning to put
> a
> 'manual input'/vlookup(###) kind of formula in there.
>
> This is, for me, quite difficult, and I am not sure if that is even
> possible. Maybe making a template of the tables are better, I have no
> idea.
> Haha. But any help is welcome.
>
> Thanks!


 
Reply With Quote
 
monden2
Guest
Posts: n/a
 
      13th Apr 2010
Hey Don,

Thanks for the tip.

However, it is not necesarly the adding of column that is the problem. The
point is that these lists need to be converted into tables as the headers and
columns of the table, and then copy/pasted on new sheets.

After that, the title of the table as well as the sheets should reflect the
value of a cell in the list (in this case the first one of the list)

And then, finally, the table should have a formula (i.e. =B3/D3) in the %
column of each month.

I was hoping that there would be a macro fo some sort, that could do this
process for me. The 'copy/past on new sheet' event is no problem, but the
'convert list to table headers' event is a dousy.

Thank for the help!

"Don Guillett" wrote:

>
> What you want is doable but you may want to consider keeping on ONE
> sheet>adding a column a,b,c and then using data>filter>autofilter>>>>>
> List etc
> 1
> 2
> 3
> 4
> 5
> 6
>
> --
> Don Guillett
> Microsoft MVP Excel
> SalesAid Software
> (E-Mail Removed)
> "monden2" <(E-Mail Removed)> wrote in message
> news:0B2BFD14-3FAA-4698-9DC6-(E-Mail Removed)...
> > Hey everyone,
> >
> > I have been tinkering around with excel a bit, and I am curious is I could
> > get the following done in a macro.
> >
> > I have a sheet with some lists. Each list has different values from the
> > other list. Now I want to combine these lists into a table (not a pivot,
> > because data has to be inserted later) along with a calendar, maybe in a
> > template if that makes it easier, and then add new sheets with the name
> > and
> > referenced table according to the lists. To give the example, starting
> > from
> > A1 on Sheet 1.
> >
> >
> > List A List B List C Calendar
> > 1 2 3 January
> > 4 5 6 Feb
> >
> >
> > Then I want to have the following to end up in a table and be put in a new
> > sheet
> >
> > Sheet 2 (named List A "Something")
> >
> > List A January February
> > # Days % # Days %
> > 1 'manual input' 'formula here' 'manual input' 'formula here'
> > 4 'manual input' 'formula here' 'manual input' 'formula here'
> >
> > Sheet 3 (named List B "Something")
> >
> > List B January February
> > # Days % # Days %
> > 2 'manual input' 'formula here' 'manual input' 'formula here'
> > 5 'manual input' 'formula here' 'manual input' 'formula here'
> >
> > And so on, untill it has processed all the lists. (There are now 4 in
> > total,
> > but more can be added later). Regarding the formula, I am planning to put
> > a
> > 'manual input'/vlookup(###) kind of formula in there.
> >
> > This is, for me, quite difficult, and I am not sure if that is even
> > possible. Maybe making a template of the tables are better, I have no
> > idea.
> > Haha. But any help is welcome.
> >
> > Thanks!

>
> .
>

 
Reply With Quote
 
Don Guillett
Guest
Posts: n/a
 
      13th Apr 2010
If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"monden2" <(E-Mail Removed)> wrote in message
news:6433B660-0DEA-4AB8-A10A-(E-Mail Removed)...
> Hey Don,
>
> Thanks for the tip.
>
> However, it is not necesarly the adding of column that is the problem. The
> point is that these lists need to be converted into tables as the headers
> and
> columns of the table, and then copy/pasted on new sheets.
>
> After that, the title of the table as well as the sheets should reflect
> the
> value of a cell in the list (in this case the first one of the list)
>
> And then, finally, the table should have a formula (i.e. =B3/D3) in the %
> column of each month.
>
> I was hoping that there would be a macro fo some sort, that could do this
> process for me. The 'copy/past on new sheet' event is no problem, but the
> 'convert list to table headers' event is a dousy.
>
> Thank for the help!
>
> "Don Guillett" wrote:
>
>>
>> What you want is doable but you may want to consider keeping on ONE
>> sheet>adding a column a,b,c and then using data>filter>autofilter>>>>>
>> List etc
>> 1
>> 2
>> 3
>> 4
>> 5
>> 6
>>
>> --
>> Don Guillett
>> Microsoft MVP Excel
>> SalesAid Software
>> (E-Mail Removed)
>> "monden2" <(E-Mail Removed)> wrote in message
>> news:0B2BFD14-3FAA-4698-9DC6-(E-Mail Removed)...
>> > Hey everyone,
>> >
>> > I have been tinkering around with excel a bit, and I am curious is I
>> > could
>> > get the following done in a macro.
>> >
>> > I have a sheet with some lists. Each list has different values from the
>> > other list. Now I want to combine these lists into a table (not a
>> > pivot,
>> > because data has to be inserted later) along with a calendar, maybe in
>> > a
>> > template if that makes it easier, and then add new sheets with the name
>> > and
>> > referenced table according to the lists. To give the example, starting
>> > from
>> > A1 on Sheet 1.
>> >
>> >
>> > List A List B List C Calendar
>> > 1 2 3 January
>> > 4 5 6 Feb
>> >
>> >
>> > Then I want to have the following to end up in a table and be put in a
>> > new
>> > sheet
>> >
>> > Sheet 2 (named List A "Something")
>> >
>> > List A January February
>> > # Days % # Days
>> > %
>> > 1 'manual input' 'formula here' 'manual input' 'formula here'
>> > 4 'manual input' 'formula here' 'manual input' 'formula here'
>> >
>> > Sheet 3 (named List B "Something")
>> >
>> > List B January February
>> > # Days % # Days
>> > %
>> > 2 'manual input' 'formula here' 'manual input' 'formula here'
>> > 5 'manual input' 'formula here' 'manual input' 'formula here'
>> >
>> > And so on, untill it has processed all the lists. (There are now 4 in
>> > total,
>> > but more can be added later). Regarding the formula, I am planning to
>> > put
>> > a
>> > 'manual input'/vlookup(###) kind of formula in there.
>> >
>> > This is, for me, quite difficult, and I am not sure if that is even
>> > possible. Maybe making a template of the tables are better, I have no
>> > idea.
>> > Haha. But any help is welcome.
>> >
>> > Thanks!

>>
>> .
>>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Create List sourced from Multiple sheets of varying lengths desertSol Microsoft Excel New Users 1 21st Oct 2009 10:05 PM
Create multiple sheets and pivot tables from single source dave Microsoft Excel Worksheet Functions 0 16th Jun 2009 05:20 PM
Create a summary list using same fields from multiple sheets =?Utf-8?B?UGF1bEc=?= Microsoft Excel Misc 1 6th Sep 2007 03:14 PM
Multiple Sheets (Need to create 500 individual sheets in one workbook, pulling DATA Amaxwell Microsoft Excel Worksheet Functions 4 17th Aug 2006 06:23 AM
Create a List from Same Cell on Multiple Sheets Fritz Buchman Microsoft Excel Discussion 8 10th May 2004 04:52 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:31 PM.