Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default how to trigger data

I have laid out a table containing 50 data on a monthly for a period of 5
years. I intend to calculate growth rate calculated over the same period in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which could
locate and trigger the right data and then calculate? Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default how to trigger data

With your monthly data in row #1, In A2 enter:

=(M1-A1)/A1 format as percent and copy this formula across the second row.
--
Gary''s Student - gsnu200909


"renegade" wrote:

I have laid out a table containing 50 data on a monthly for a period of 5
years. I intend to calculate growth rate calculated over the same period in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which could
locate and trigger the right data and then calculate? Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 527
Default how to trigger data

With data starting in A2 enter formula in M3

=IF(M2="","",ROUND(M2/A2-1,2))

HTH
Peter

"renegade" wrote:

I have laid out a table containing 50 data on a monthly for a period of 5
years. I intend to calculate growth rate calculated over the same period in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which could
locate and trigger the right data and then calculate? Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default how to trigger data

Thanks both for your replies. The standard formula is fine, but what I
intended to achieve is have some sort of automation, so Excel could recognize
when it sees a 2nd Jan (Jan-2006), which would automatically detect the
figure for the first Jan (Jan-2005), then divide/work out the growth rate,
when it sees the 3rd Jan (Jan-2005) occurring, the figure would automatically
divide the figure for 2nd Jan... sorry if I didn't express clearly... so is
there a formula which allows me to copy across the whole range? Thanks

"Gary''s Student" wrote:

With your monthly data in row #1, In A2 enter:

=(M1-A1)/A1 format as percent and copy this formula across the second row.
--
Gary''s Student - gsnu200909


"renegade" wrote:

I have laid out a table containing 50 data on a monthly for a period of 5
years. I intend to calculate growth rate calculated over the same period in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which could
locate and trigger the right data and then calculate? Thanks!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default how to trigger data

Hi,

Suppose the dates typed rightwards from C3 and then entry is like
1/1/2002,1/2/2002, 1/3/2002, 1/4/2002 and so on (till S3). In row 4, there
are numbers

In cell C8, enter =1/1/2003
In cell D8, enter
=INDEX($C$3:$S$4,2,MATCH(C8,C3:S3,0))/INDEX($C$3:$S$4,2,MATCH(DATE(YEAR(C8)-1,MONTH(C8),DAY(C8)),C3:S3,0))

This will give you the growth of 1/1/2003 over 1/1/2002

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"renegade" wrote in message
...
I have laid out a table containing 50 data on a monthly for a period of 5
years. I intend to calculate growth rate calculated over the same period
in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which could
locate and trigger the right data and then calculate? Thanks!




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default how to trigger data

Thanks; this is very helpful

"Ashish Mathur" wrote:

Hi,

Suppose the dates typed rightwards from C3 and then entry is like
1/1/2002,1/2/2002, 1/3/2002, 1/4/2002 and so on (till S3). In row 4, there
are numbers

In cell C8, enter =1/1/2003
In cell D8, enter
=INDEX($C$3:$S$4,2,MATCH(C8,C3:S3,0))/INDEX($C$3:$S$4,2,MATCH(DATE(YEAR(C8)-1,MONTH(C8),DAY(C8)),C3:S3,0))

This will give you the growth of 1/1/2003 over 1/1/2002

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"renegade" wrote in message
...
I have laid out a table containing 50 data on a monthly for a period of 5
years. I intend to calculate growth rate calculated over the same period
in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which could
locate and trigger the right data and then calculate? Thanks!


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default how to trigger data

Yuu are welcome

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"renegade" wrote in message
...
Thanks; this is very helpful

"Ashish Mathur" wrote:

Hi,

Suppose the dates typed rightwards from C3 and then entry is like
1/1/2002,1/2/2002, 1/3/2002, 1/4/2002 and so on (till S3). In row 4,
there
are numbers

In cell C8, enter =1/1/2003
In cell D8, enter
=INDEX($C$3:$S$4,2,MATCH(C8,C3:S3,0))/INDEX($C$3:$S$4,2,MATCH(DATE(YEAR(C8)-1,MONTH(C8),DAY(C8)),C3:S3,0))

This will give you the growth of 1/1/2003 over 1/1/2002

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"renegade" wrote in message
...
I have laid out a table containing 50 data on a monthly for a period of
5
years. I intend to calculate growth rate calculated over the same
period
in
different years.

So Row 1 contains: Jan-02, Feb-02, Mar-02, ...Jan-03, Feb-03, ...

So the growth rate I intend to calculate would be Jan-03/Jan-02,
Jan-04/Jan-03, Feb-03/Feb-02, and so on... Is there a function which
could
locate and trigger the right data and then calculate? Thanks!


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
Why won't target cell data changes trigger formula evaluation? laura_in_abq Excel Worksheet Functions 3 September 4th 09 09:15 PM
Trigger a Date & Time stamp by entering data in another field... mjjohnso Excel Worksheet Functions 4 April 11th 09 06:46 PM
trigger data validation warning Dave F Excel Discussion (Misc queries) 1 April 23rd 07 08:20 PM
Trigger code if certian data is present Jim G Excel Discussion (Misc queries) 2 April 20th 07 09:46 AM
trigger help climax Excel Worksheet Functions 1 February 2nd 06 04:39 PM


All times are GMT +1. The time now is 06:21 AM.

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

About Us

"It's about Microsoft Excel"