Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default changing year grouping in pivot table

Hello,

I have a pivot table that is basically saying how much business a sales
person has closed per quarter over an 18 month period. The data is coming
from an automatic export from our sales database, so I am unable to change my
source data. See example of pivot table:

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
2006 Q3
2006 Q4
2007 Q1
2007 Q2
2007 Q3
2007 Q4

However, our FY runs from July to June. So actually 2006 Q3, is 06/07 Q1.

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
0607 Q1
0607 Q2
0607 Q3
0607 Q4
0708 Q1
0708 Q2

Is it possible to customise the date grouping in a pivot table so that I can
specify July as my start of year and have pivot tables summarising by FY
rather than CY?

Thanks Rebecca


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default changing year grouping in pivot table

I don't think you can change this.

Can you insert a new column in your source data worksheet--if it is imported to
a worksheet????

I like this formula in general--if the fiscal year starts on the first of month
number #:
="FY"&YEAR(A1)-(MONTH(A1)<#)&"-Q"&INT(1+MOD(MONTH(A1)-#,12)/3)

So if the fiscal year starts on July 1st, then I'd use:
="FY"&YEAR(A1)-(MONTH(A1)<7)&"-Q"&INT(1+MOD(MONTH(A1)-7,12)/3)

Then you can pivot on that column.

Becksicle wrote:

Hello,

I have a pivot table that is basically saying how much business a sales
person has closed per quarter over an 18 month period. The data is coming
from an automatic export from our sales database, so I am unable to change my
source data. See example of pivot table:

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
2006 Q3
2006 Q4
2007 Q1
2007 Q2
2007 Q3
2007 Q4

However, our FY runs from July to June. So actually 2006 Q3, is 06/07 Q1.

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
0607 Q1
0607 Q2
0607 Q3
0607 Q4
0708 Q1
0708 Q2

Is it possible to customise the date grouping in a pivot table so that I can
specify July as my start of year and have pivot tables summarising by FY
rather than CY?

Thanks Rebecca


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Don Don is offline
external usenet poster
 
Posts: 487
Default changing year grouping in pivot table

Can you have the pivot table do its thing, then convert the data after? I
have done pivot tables to feed into other reports so I can sum them / label
them different yet retaining the raw data? expecialy since you can not touch
the raw data?

"Becksicle" wrote:

Hello,

I have a pivot table that is basically saying how much business a sales
person has closed per quarter over an 18 month period. The data is coming
from an automatic export from our sales database, so I am unable to change my
source data. See example of pivot table:

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
2006 Q3
2006 Q4
2007 Q1
2007 Q2
2007 Q3
2007 Q4

However, our FY runs from July to June. So actually 2006 Q3, is 06/07 Q1.

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
0607 Q1
0607 Q2
0607 Q3
0607 Q4
0708 Q1
0708 Q2

Is it possible to customise the date grouping in a pivot table so that I can
specify July as my start of year and have pivot tables summarising by FY
rather than CY?

Thanks Rebecca


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default changing year grouping in pivot table

Thanks for the feedback, Dave.
The formula's great, the data is automatically updated into my worksheet
though, and overwrites the previous copy, so everytime I refresh, I'd have to
re-add my FY date column with the formula, so although it will work, it's not
ideal, but it will come in handy for other things, so thanks a lot!

"Dave Peterson" wrote:

I don't think you can change this.

Can you insert a new column in your source data worksheet--if it is imported to
a worksheet????

I like this formula in general--if the fiscal year starts on the first of month
number #:
="FY"&YEAR(A1)-(MONTH(A1)<#)&"-Q"&INT(1+MOD(MONTH(A1)-#,12)/3)

So if the fiscal year starts on July 1st, then I'd use:
="FY"&YEAR(A1)-(MONTH(A1)<7)&"-Q"&INT(1+MOD(MONTH(A1)-7,12)/3)

Then you can pivot on that column.

Becksicle wrote:

Hello,

I have a pivot table that is basically saying how much business a sales
person has closed per quarter over an 18 month period. The data is coming
from an automatic export from our sales database, so I am unable to change my
source data. See example of pivot table:

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
2006 Q3
2006 Q4
2007 Q1
2007 Q2
2007 Q3
2007 Q4

However, our FY runs from July to June. So actually 2006 Q3, is 06/07 Q1.

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
0607 Q1
0607 Q2
0607 Q3
0607 Q4
0708 Q1
0708 Q2

Is it possible to customise the date grouping in a pivot table so that I can
specify July as my start of year and have pivot tables summarising by FY
rather than CY?

Thanks Rebecca


--

Dave Peterson

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default changing year grouping in pivot table

If it's something you do a lot, you may want to add the formula column and do
the pivottable via a macro.

Becksicle wrote:

Thanks for the feedback, Dave.
The formula's great, the data is automatically updated into my worksheet
though, and overwrites the previous copy, so everytime I refresh, I'd have to
re-add my FY date column with the formula, so although it will work, it's not
ideal, but it will come in handy for other things, so thanks a lot!

"Dave Peterson" wrote:

I don't think you can change this.

Can you insert a new column in your source data worksheet--if it is imported to
a worksheet????

I like this formula in general--if the fiscal year starts on the first of month
number #:
="FY"&YEAR(A1)-(MONTH(A1)<#)&"-Q"&INT(1+MOD(MONTH(A1)-#,12)/3)

So if the fiscal year starts on July 1st, then I'd use:
="FY"&YEAR(A1)-(MONTH(A1)<7)&"-Q"&INT(1+MOD(MONTH(A1)-7,12)/3)

Then you can pivot on that column.

Becksicle wrote:

Hello,

I have a pivot table that is basically saying how much business a sales
person has closed per quarter over an 18 month period. The data is coming
from an automatic export from our sales database, so I am unable to change my
source data. See example of pivot table:

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
2006 Q3
2006 Q4
2007 Q1
2007 Q2
2007 Q3
2007 Q4

However, our FY runs from July to June. So actually 2006 Q3, is 06/07 Q1.

A B
Year Qtr Columns C - G then have sales people's names with Sum of Amount
0607 Q1
0607 Q2
0607 Q3
0607 Q4
0708 Q1
0708 Q2

Is it possible to customise the date grouping in a pivot table so that I can
specify July as my start of year and have pivot tables summarising by FY
rather than CY?

Thanks Rebecca


--

Dave Peterson


--

Dave Peterson
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
Pivot table grouping J. Sperry[_2_] Excel Discussion (Misc queries) 0 November 10th 07 12:38 AM
Pivot Table Grouping Karen Excel Discussion (Misc queries) 3 August 2nd 06 09:33 PM
Pivot Table or Grouping Help wnfisba Excel Discussion (Misc queries) 0 April 20th 06 05:22 PM
Pivot Table Grouping Darren Excel Discussion (Misc queries) 1 April 11th 05 08:34 PM
Pivot table grouping nc Excel Discussion (Misc queries) 3 January 19th 05 10:15 AM


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