Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Running total for inventory

I am working on a spreadsheet to keep track of working and non working desks
in an office.

Each desk has 1 row, each piece of equipment has their own column.

I want to have a formula where it will count a station is it has one of the
following "broken usb keyboard" or "broken usb keyboard" or "broken phone" or
"broken monitor". If a station has 2 things broken I want it only counted
once.

Can someone please help me with a formula.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Running total for inventory

Assume data in row2 down, where col A = desk#
and "broken ... " could appear in either cols B, C or D

Place in E2:
= --(SUMPRODUCT(--(ISNUMBER(SEARCH("broken",B2:D2))))0)
Copy down to the last row. Col E will return a "1" or zero depending on
whether "broken" was found in either cols B, C or D for each desk.

Then you could get a running total of the broken desks
by placing in F2: =SUM($E$2:E2)
and copy F2 down
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"FormulaQuestioner" wrote:
I am working on a spreadsheet to keep track of working and non working desks
in an office.

Each desk has 1 row, each piece of equipment has their own column.

I want to have a formula where it will count a station is it has one of the
following "broken usb keyboard" or "broken usb keyboard" or "broken phone" or
"broken monitor". If a station has 2 things broken I want it only counted
once.

Can someone please help me with a formula.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,480
Default Running total for inventory

Hi
Try
=COUNTIF(A2:H2,<"")1

Change the range A2:H2 to suit.
Copy down as far as required.
Filter on column with formula=TRUE to find rows which match


--

Regards
Roger Govier

"FormulaQuestioner" wrote in
message ...
I am working on a spreadsheet to keep track of working and non working
desks
in an office.

Each desk has 1 row, each piece of equipment has their own column.

I want to have a formula where it will count a station is it has one of
the
following "broken usb keyboard" or "broken usb keyboard" or "broken phone"
or
"broken monitor". If a station has 2 things broken I want it only counted
once.

Can someone please help me with a formula.


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Running total for inventory

For the site each piece of equipment can have different things wrong with it.
Like it could be "monitor base broken" "monitor screen cracked" for monitors
and for each piece of equipment they can have differnt things like that.
Unfornutaly all of the different equipment will not have the same word in the
description.


"Max" wrote:

Assume data in row2 down, where col A = desk#
and "broken ... " could appear in either cols B, C or D

Place in E2:
= --(SUMPRODUCT(--(ISNUMBER(SEARCH("broken",B2:D2))))0)
Copy down to the last row. Col E will return a "1" or zero depending on
whether "broken" was found in either cols B, C or D for each desk.

Then you could get a running total of the broken desks
by placing in F2: =SUM($E$2:E2)
and copy F2 down
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"FormulaQuestioner" wrote:
I am working on a spreadsheet to keep track of working and non working desks
in an office.

Each desk has 1 row, each piece of equipment has their own column.

I want to have a formula where it will count a station is it has one of the
following "broken usb keyboard" or "broken usb keyboard" or "broken phone" or
"broken monitor". If a station has 2 things broken I want it only counted
once.

Can someone please help me with a formula.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Running total for inventory

You could try replacing the formula in E2 with something like this:
= --(SUMPRODUCT(--(ISNUMBER(SEARCH({"broke";"crack";"spoil"},B2:D2)) ))0)

In the above, I've included 3 possible generic words in this part:
{"broke";"crack";"spoil"}

You could extend the list above to suit other possibilities in your data.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"FormulaQuestioner" wrote:
For the site each piece of equipment can have different things wrong with it.
Like it could be "monitor base broken" "monitor screen cracked" for monitors
and for each piece of equipment they can have differnt things like that.
Unfornutaly all of the different equipment will not have the same word in the
description.




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 29
Default Running total for inventory

Here are some of the ones that I currently use

Monitor Missing, Monitor Broken, USB Keyboard Damaged, Has PS2 Keyboard,
Phone Broken, Wires peeled

"Max" wrote:

You could try replacing the formula in E2 with something like this:
= --(SUMPRODUCT(--(ISNUMBER(SEARCH({"broke";"crack";"spoil"},B2:D2)) ))0)

In the above, I've included 3 possible generic words in this part:
{"broke";"crack";"spoil"}

You could extend the list above to suit other possibilities in your data.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"FormulaQuestioner" wrote:
For the site each piece of equipment can have different things wrong with it.
Like it could be "monitor base broken" "monitor screen cracked" for monitors
and for each piece of equipment they can have differnt things like that.
Unfornutaly all of the different equipment will not have the same word in the
description.


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Running total for inventory

You could add the core words in and try it like this in E2, then:
=
--(SUMPRODUCT(--(ISNUMBER(SEARCH({"broke";"crack";"spoil";"miss";" peel";"ps2"},B2:D2))))0)

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"FormulaQuestioner" wrote:
Here are some of the ones that I currently use

Monitor Missing, Monitor Broken, USB Keyboard Damaged, Has PS2 Keyboard,
Phone Broken, Wires peeled


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,480
Default Running total for inventory

Sorry,

I obviously clicked the wrong posting prior to typing the previous posting.
It obviously has nothing at all to do with it.

--

Regards
Roger Govier

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi
Try
=COUNTIF(A2:H2,<"")1

Change the range A2:H2 to suit.
Copy down as far as required.
Filter on column with formula=TRUE to find rows which match


--

Regards
Roger Govier

"FormulaQuestioner" wrote in
message ...
I am working on a spreadsheet to keep track of working and non working
desks
in an office.

Each desk has 1 row, each piece of equipment has their own column.

I want to have a formula where it will count a station is it has one of
the
following "broken usb keyboard" or "broken usb keyboard" or "broken
phone" or
"broken monitor". If a station has 2 things broken I want it only counted
once.

Can someone please help me with a formula.


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
Running Inventory Kazdagi New Users to Excel 6 July 25th 07 04:53 PM
Pivot Table For Running Inventory Levels GarrettD78 Excel Discussion (Misc queries) 0 May 15th 07 06:26 PM
running total and average of that total after 3 events belvy123 Excel Discussion (Misc queries) 0 March 28th 07 02:57 AM
running total and average of that total after 3 events Toppers Excel Discussion (Misc queries) 1 March 28th 07 02:19 AM
Inventory Pricing - running averages Inventory Question Excel Discussion (Misc queries) 2 January 3rd 05 04:36 PM


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