Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 476
Default Convert Turn Rate to Weekly Supply

A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the weeks
supply without having to have access to both the Inventory Value or the Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate and one
of the other two? In other words if all you had was the turn rate and the
inventory or just the turn rate and the cost of goods sold, could you come up
with the weeks supply?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Convert Turn Rate to Weekly Supply

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate and
one
of the other two? In other words if all you had was the turn rate and the
inventory or just the turn rate and the cost of goods sold, could you come
up
with the weeks supply?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Convert Turn Rate to Weekly Supply

Perhaps, Joe, you could give us a clue what you intended the two SUM
functions to achieve in
=A1/SUM(SUM(A2*12)/52) when you haven't given the function a number of
arguments to sum?
Why not just =A1/((A2*12)/52) ?
If you don't understand what the SUM function does, look it up in Excel
help.
--
David Biddulph

Joe wrote:
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula: =A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the
weeks supply without having to have access to both the Inventory
Value or the Cost of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate
and one of the other two? In other words if all you had was the turn
rate and the inventory or just the turn rate and the cost of goods
sold, could you come up with the weeks supply?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Convert Turn Rate to Weekly Supply

David Biddulph wrote:
Perhaps, Joe, you could give us a clue what you intended the two SUM
functions to achieve in
=A1/SUM(SUM(A2*12)/52) when you haven't given the function a number of
arguments to sum?
Why not just =A1/((A2*12)/52) ?


or, of course, =A1/(A2*12/52)

If you don't understand what the SUM function does, look it up in
Excel help.

Joe wrote:

....
To calculate the weeks supply of product I would use the following
formula: =A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

....
--
David Biddulph


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 476
Default Convert Turn Rate to Weekly Supply

I goofed and had one of the formulas backwards
Original: A3 = =A1*12/A2 [this give me the turn rate of: 3
Corrected: A3 = =A2*12/A1 [this give me the turn rate of: 3

I'm not sure if that had anything to do with it or not but weeks supply
using these numbers is 17.333. Your formula =A3/144*52 returns 1.0833.


"Bob Phillips" wrote:

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate and
one
of the other two? In other words if all you had was the turn rate and the
inventory or just the turn rate and the cost of goods sold, could you come
up
with the weeks supply?






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 476
Default Convert Turn Rate to Weekly Supply

Thank you for your help in simplifing =A1/SUM(SUM(A2*12)/52) but that really
is not the problem I am trying to solve.

I am trying to come up with a formula that will allow me to back into the
weeks supply without have to have both the inventory and the cost of goods
sold at the same time by using the turn rate as a substitute for one of them.

Thanks

"David Biddulph" wrote:

David Biddulph wrote:
Perhaps, Joe, you could give us a clue what you intended the two SUM
functions to achieve in
=A1/SUM(SUM(A2*12)/52) when you haven't given the function a number of
arguments to sum?
Why not just =A1/((A2*12)/52) ?


or, of course, =A1/(A2*12/52)

If you don't understand what the SUM function does, look it up in
Excel help.

Joe wrote:

....
To calculate the weeks supply of product I would use the following
formula: =A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

....
--
David Biddulph



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Convert Turn Rate to Weekly Supply

You will need to spell it all out again because none of it makes any sense
now. The formula you give now returns 3 not 17.333.

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
I goofed and had one of the formulas backwards
Original: A3 = =A1*12/A2 [this give me the turn rate of: 3
Corrected: A3 = =A2*12/A1 [this give me the turn rate of: 3

I'm not sure if that had anything to do with it or not but weeks supply
using these numbers is 17.333. Your formula =A3/144*52 returns 1.0833.


"Bob Phillips" wrote:

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the
weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate
and
one
of the other two? In other words if all you had was the turn rate and
the
inventory or just the turn rate and the cost of goods sold, could you
come
up
with the weeks supply?






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 476
Default Convert Turn Rate to Weekly Supply

Ok here it is:

A B C D
1
2 12 3 3 17.333

Cells A2 and B2 are values entered:
A2: 12
B2: 3

Cells C2 and D2 are formulas:
C2: =B2*12/A2 [which returns 3]
D2: =A2/(SUM(B2*12)/52) [which returns 17.333]

A2 = Inventory
B2 = Cost of Goods Sold
C2 = Turn Rate
D2 = Weeks Supply

Is it possible to come up with D2 (Weeks Supply) by using only

A2 (Inventory) and C2 (Turn Rate)

or by using only

B2 (Cost of Goods Sold) and C2 (Turn Rate)?


"Bob Phillips" wrote:

You will need to spell it all out again because none of it makes any sense
now. The formula you give now returns 3 not 17.333.

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
I goofed and had one of the formulas backwards
Original: A3 = =A1*12/A2 [this give me the turn rate of: 3
Corrected: A3 = =A2*12/A1 [this give me the turn rate of: 3

I'm not sure if that had anything to do with it or not but weeks supply
using these numbers is 17.333. Your formula =A3/144*52 returns 1.0833.


"Bob Phillips" wrote:

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the
weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate
and
one
of the other two? In other words if all you had was the turn rate and
the
inventory or just the turn rate and the cost of goods sold, could you
come
up
with the weeks supply?






  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Convert Turn Rate to Weekly Supply

To calculate weeks' supply from turn rate, use:

=52/a3

Where a3 is your turn rate. You don't need either inventory or COGS.

Regards,
Fred.


"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate and
one
of the other two? In other words if all you had was the turn rate and the
inventory or just the turn rate and the cost of goods sold, could you come
up
with the weeks supply?


  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Convert Turn Rate to Weekly Supply

Try

=52/C2

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
Ok here it is:

A B C D
1
2 12 3 3 17.333

Cells A2 and B2 are values entered:
A2: 12
B2: 3

Cells C2 and D2 are formulas:
C2: =B2*12/A2 [which returns 3]
D2: =A2/(SUM(B2*12)/52) [which returns 17.333]

A2 = Inventory
B2 = Cost of Goods Sold
C2 = Turn Rate
D2 = Weeks Supply

Is it possible to come up with D2 (Weeks Supply) by using only

A2 (Inventory) and C2 (Turn Rate)

or by using only

B2 (Cost of Goods Sold) and C2 (Turn Rate)?


"Bob Phillips" wrote:

You will need to spell it all out again because none of it makes any
sense
now. The formula you give now returns 3 not 17.333.

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
I goofed and had one of the formulas backwards
Original: A3 = =A1*12/A2 [this give me the turn rate of: 3
Corrected: A3 = =A2*12/A1 [this give me the turn rate of: 3

I'm not sure if that had anything to do with it or not but weeks supply
using these numbers is 17.333. Your formula =A3/144*52 returns 1.0833.


"Bob Phillips" wrote:

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the
weeks
supply without having to have access to both the Inventory Value or
the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate
and
one
of the other two? In other words if all you had was the turn rate
and
the
inventory or just the turn rate and the cost of goods sold, could
you
come
up
with the weeks supply?










  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 476
Default Convert Turn Rate to Weekly Supply

Wow that is much simpler then I thought. You don't need the inventory or the
cost of goods sold as long as you have the turn rate. Thanks a Bunch!

"Bob Phillips" wrote:

Try

=52/C2

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
Ok here it is:

A B C D
1
2 12 3 3 17.333

Cells A2 and B2 are values entered:
A2: 12
B2: 3

Cells C2 and D2 are formulas:
C2: =B2*12/A2 [which returns 3]
D2: =A2/(SUM(B2*12)/52) [which returns 17.333]

A2 = Inventory
B2 = Cost of Goods Sold
C2 = Turn Rate
D2 = Weeks Supply

Is it possible to come up with D2 (Weeks Supply) by using only

A2 (Inventory) and C2 (Turn Rate)

or by using only

B2 (Cost of Goods Sold) and C2 (Turn Rate)?


"Bob Phillips" wrote:

You will need to spell it all out again because none of it makes any
sense
now. The formula you give now returns 3 not 17.333.

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
I goofed and had one of the formulas backwards
Original: A3 = =A1*12/A2 [this give me the turn rate of: 3
Corrected: A3 = =A2*12/A1 [this give me the turn rate of: 3

I'm not sure if that had anything to do with it or not but weeks supply
using these numbers is 17.333. Your formula =A3/144*52 returns 1.0833.


"Bob Phillips" wrote:

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the
weeks
supply without having to have access to both the Inventory Value or
the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate
and
one
of the other two? In other words if all you had was the turn rate
and
the
inventory or just the turn rate and the cost of goods sold, could
you
come
up
with the weeks supply?









  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Joe Joe is offline
external usenet poster
 
Posts: 476
Default Convert Turn Rate to Weekly Supply

Thanks Fred that is more simple then I thought. I appreciate your help.

"Fred Smith" wrote:

To calculate weeks' supply from turn rate, use:

=52/a3

Where a3 is your turn rate. You don't need either inventory or COGS.

Regards,
Fred.


"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate and
one
of the other two? In other words if all you had was the turn rate and the
inventory or just the turn rate and the cost of goods sold, could you come
up
with the weeks supply?



  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Convert Turn Rate to Weekly Supply

Yes. Basically the supply period is the reciprocal of the turn rate. Glad it
worked for you. Thanks for the feedback.

Regards,
Fred.

"Joe" wrote in message
...
Thanks Fred that is more simple then I thought. I appreciate your help.

"Fred Smith" wrote:

To calculate weeks' supply from turn rate, use:

=52/a3

Where a3 is your turn rate. You don't need either inventory or COGS.

Regards,
Fred.


"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at the
weeks
supply without having to have access to both the Inventory Value or the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn rate
and
one
of the other two? In other words if all you had was the turn rate and
the
inventory or just the turn rate and the cost of goods sold, could you
come
up
with the weeks supply?




  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Convert Turn Rate to Weekly Supply

You just have to reverse engineer it.

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
Wow that is much simpler then I thought. You don't need the inventory or
the
cost of goods sold as long as you have the turn rate. Thanks a Bunch!

"Bob Phillips" wrote:

Try

=52/C2

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
Ok here it is:

A B C D
1
2 12 3 3 17.333

Cells A2 and B2 are values entered:
A2: 12
B2: 3

Cells C2 and D2 are formulas:
C2: =B2*12/A2 [which returns 3]
D2: =A2/(SUM(B2*12)/52) [which returns 17.333]

A2 = Inventory
B2 = Cost of Goods Sold
C2 = Turn Rate
D2 = Weeks Supply

Is it possible to come up with D2 (Weeks Supply) by using only

A2 (Inventory) and C2 (Turn Rate)

or by using only

B2 (Cost of Goods Sold) and C2 (Turn Rate)?


"Bob Phillips" wrote:

You will need to spell it all out again because none of it makes any
sense
now. The formula you give now returns 3 not 17.333.

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
I goofed and had one of the formulas backwards
Original: A3 = =A1*12/A2 [this give me the turn rate of: 3
Corrected: A3 = =A2*12/A1 [this give me the turn rate of: 3

I'm not sure if that had anything to do with it or not but weeks
supply
using these numbers is 17.333. Your formula =A3/144*52 returns
1.0833.


"Bob Phillips" wrote:

=A3/144*52

--
__________________________________
HTH

Bob

"Joe" wrote in message
...
A1 = Monthly Inventory Value of 12
A2 = Monthly Cost of Goods Sold of 3
A3 = =A1*12/A2 [this give me the turn rate of: 3

To calculate the weeks supply of product I would use the
following
formula:
=A1/SUM(SUM(A2*12)/52) [this gives me 17.333 weeks supply]

It would be helpful to have a calculation that could arrive at
the
weeks
supply without having to have access to both the Inventory Value
or
the
Cost
of Goods Sold.

Is it possible to calculate the Weeks supply with only the turn
rate
and
one
of the other two? In other words if all you had was the turn rate
and
the
inventory or just the turn rate and the cost of goods sold, could
you
come
up
with the weeks supply?











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
how to convert a weekly data series to monthly jhstone711 Excel Discussion (Misc queries) 1 February 2nd 09 08:50 PM
how do i convert a flat rate into a reducing rate? Sumit Shekhar Excel Worksheet Functions 1 September 17th 08 12:56 PM
I have year based data want to convert into weekly basis Aadhya Excel Worksheet Functions 1 July 23rd 08 11:12 AM
How can I convert a time calc into an overtime pay rate Dic Hill Excel Discussion (Misc queries) 1 November 13th 07 08:45 PM
subtraction of times, convert & multiply by a conditioned rate sanscull Excel Worksheet Functions 6 May 20th 05 02:02 AM


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