Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How do i distribute columns of data to separate sheets?

I have a budget set up for the year. Each column represents one month and
all budget categories are the same for the year (represented by rows). I
want to distribute each column to it's own worksheet with as little
copy/paste activity as possible. Any ideas?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default How do i distribute columns of data to separate sheets?

Let's start out with a single worksheet called "yearly". Run this macro:

Sub month_ize()
s = Array("jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep",
"oct", "nov", "dec")
For I = 0 To 11
Sheets("yearly").Activate
Set r1 = Range(Cells(1, I + 1), Cells(Rows.Count, I + 1))
Worksheets.Add
ActiveSheet.Name = s(I)
Set r2 = Range("A1")
r1.Copy r2
Next
End Sub


It will create the monthly tabs for you and copy the appropriate columns for
you.
--
Gary''s Student - gsnu200715


"beselfish" wrote:

I have a budget set up for the year. Each column represents one month and
all budget categories are the same for the year (represented by rows). I
want to distribute each column to it's own worksheet with as little
copy/paste activity as possible. Any ideas?

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
Distribute values evenly in two columns MIckeyLove Excel Discussion (Misc queries) 0 April 27th 06 04:23 PM
Splitting Data into separate sheets bernard Excel Discussion (Misc queries) 0 December 2nd 05 04:31 PM
Distribute info from "summary" page to separate pages under condition markx Excel Worksheet Functions 1 August 30th 05 04:24 PM
FU: Distribute info from "summary" page to separate pages under condition markx Excel Worksheet Functions 0 August 30th 05 03:14 PM
How do I plot data in Excel that is captured on separate sheets; . krwegner Excel Discussion (Misc queries) 0 November 30th 04 05:43 PM


All times are GMT +1. The time now is 11:36 PM.

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"