Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Impact of negative sales on inventory weeks on hand

Hi! I am working on a spreadsheet which will show the 10 items with the most
inventory at each account, measured by weeks on hand. Weeks on hand is
calculated by dividing the value of inventory on hand by the averages sales
for the past several weeks (usually 13).

This is fairly straightforward unless an item has had no sales, or negative
sales (due to seasonality). Obvioulsy the formula will return #DIV/0! or a
negative number. Can someone help me with a formula that will return a value
that will return a value that can be sorted in descending order for
distribution to my coworkers, and easy population into presentations?

Thanks for any help you can give.
--
Diane
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Impact of negative sales on inventory weeks on hand

Are you just looking to avoid the #DIV/0! error and negative values? Then do
something like this: =IF(OR(ISERROR([your calculation]),[your
calculation]<0),"",[your calculation])

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"DHallgren" wrote:

Hi! I am working on a spreadsheet which will show the 10 items with the most
inventory at each account, measured by weeks on hand. Weeks on hand is
calculated by dividing the value of inventory on hand by the averages sales
for the past several weeks (usually 13).

This is fairly straightforward unless an item has had no sales, or negative
sales (due to seasonality). Obvioulsy the formula will return #DIV/0! or a
negative number. Can someone help me with a formula that will return a value
that will return a value that can be sorted in descending order for
distribution to my coworkers, and easy population into presentations?

Thanks for any help you can give.
--
Diane

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Impact of negative sales on inventory weeks on hand

Thanks for your response. I think that I may not have been very clear on my
post.

I want to show that an item with $1000 of inventory on hand and no sales
during the past 13 weeks is worse than an item that has $3000 of inventory on
hand, but has average sales of $500 per week. The $3000 worth of inventory
represents 6 weeks of inventory on hand. The $1000 with no sales represents
WAY more weeks on hand.

Does that make more sense?

Thanks again. Hope you have a great day.
--
Diane


"Dave F" wrote:

Are you just looking to avoid the #DIV/0! error and negative values? Then do
something like this: =IF(OR(ISERROR([your calculation]),[your
calculation]<0),"",[your calculation])

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"DHallgren" wrote:

Hi! I am working on a spreadsheet which will show the 10 items with the most
inventory at each account, measured by weeks on hand. Weeks on hand is
calculated by dividing the value of inventory on hand by the averages sales
for the past several weeks (usually 13).

This is fairly straightforward unless an item has had no sales, or negative
sales (due to seasonality). Obvioulsy the formula will return #DIV/0! or a
negative number. Can someone help me with a formula that will return a value
that will return a value that can be sorted in descending order for
distribution to my coworkers, and easy population into presentations?

Thanks for any help you can give.
--
Diane

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 623
Default Impact of negative sales on inventory weeks on hand

Yes, it makes sense, but you still have to decide what answer you want.

Obviously, any item that has inventory, but no (or negative) sales has an
infinite supply. All you need to decide is what to display when the answer is
infinite. Some people will choose blanks, some an asterisk, some a bunch of
nines, some an infinity symbol. Simply insert whatever answer you want in place
of the quotes in Dave's if statement. Something like:

=if(sales<=0,"infinity",inventory/sales)

--
Regards,
Fred


"DHallgren" wrote in message
...
Thanks for your response. I think that I may not have been very clear on my
post.

I want to show that an item with $1000 of inventory on hand and no sales
during the past 13 weeks is worse than an item that has $3000 of inventory on
hand, but has average sales of $500 per week. The $3000 worth of inventory
represents 6 weeks of inventory on hand. The $1000 with no sales represents
WAY more weeks on hand.

Does that make more sense?

Thanks again. Hope you have a great day.
--
Diane


"Dave F" wrote:

Are you just looking to avoid the #DIV/0! error and negative values? Then do
something like this: =IF(OR(ISERROR([your calculation]),[your
calculation]<0),"",[your calculation])

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"DHallgren" wrote:

Hi! I am working on a spreadsheet which will show the 10 items with the
most
inventory at each account, measured by weeks on hand. Weeks on hand is
calculated by dividing the value of inventory on hand by the averages sales
for the past several weeks (usually 13).

This is fairly straightforward unless an item has had no sales, or negative
sales (due to seasonality). Obvioulsy the formula will return #DIV/0! or a
negative number. Can someone help me with a formula that will return a
value
that will return a value that can be sorted in descending order for
distribution to my coworkers, and easy population into presentations?

Thanks for any help you can give.
--
Diane



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Impact of negative sales on inventory weeks on hand

Fred,

That's exactly it, I just wasn't thinking about it the right way. I kept
thinking that it was in the formula I was using and how I was formatting my
numbers, not about choosing a result that will put them at the top of the
list. Thanks so much for your help!
--
Diane


"Fred Smith" wrote:

Yes, it makes sense, but you still have to decide what answer you want.

Obviously, any item that has inventory, but no (or negative) sales has an
infinite supply. All you need to decide is what to display when the answer is
infinite. Some people will choose blanks, some an asterisk, some a bunch of
nines, some an infinity symbol. Simply insert whatever answer you want in place
of the quotes in Dave's if statement. Something like:

=if(sales<=0,"infinity",inventory/sales)

--
Regards,
Fred


"DHallgren" wrote in message
...
Thanks for your response. I think that I may not have been very clear on my
post.

I want to show that an item with $1000 of inventory on hand and no sales
during the past 13 weeks is worse than an item that has $3000 of inventory on
hand, but has average sales of $500 per week. The $3000 worth of inventory
represents 6 weeks of inventory on hand. The $1000 with no sales represents
WAY more weeks on hand.

Does that make more sense?

Thanks again. Hope you have a great day.
--
Diane


"Dave F" wrote:

Are you just looking to avoid the #DIV/0! error and negative values? Then do
something like this: =IF(OR(ISERROR([your calculation]),[your
calculation]<0),"",[your calculation])

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"DHallgren" wrote:

Hi! I am working on a spreadsheet which will show the 10 items with the
most
inventory at each account, measured by weeks on hand. Weeks on hand is
calculated by dividing the value of inventory on hand by the averages sales
for the past several weeks (usually 13).

This is fairly straightforward unless an item has had no sales, or negative
sales (due to seasonality). Obvioulsy the formula will return #DIV/0! or a
negative number. Can someone help me with a formula that will return a
value
that will return a value that can be sorted in descending order for
distribution to my coworkers, and easy population into presentations?

Thanks for any help you can give.
--
Diane




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 automatically update inventory list with sales lalani New Users to Excel 2 August 20th 06 07:37 AM
sales journal and inventory management benwmen Excel Discussion (Misc queries) 4 April 27th 06 03:24 PM
sum of weeks sales please Vass Excel Worksheet Functions 8 March 9th 06 06:28 PM
how do I set up a inventory sales template? computer student Excel Worksheet Functions 0 December 8th 05 02:41 AM
Days of sales in inventory template jr Setting up and Configuration of Excel 0 March 14th 05 04:11 PM


All times are GMT +1. The time now is 10:43 AM.

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"