Count time spent by making each step activity?

Robys

New Member
Joined
Oct 25, 2017
Messages
3
Hello to All, I'm writing from Italy;
This is my first post on this forum, using Excel since long time but not expert on VBA..<o:p></o:p>
This is my issue:<o:p></o:p>
During follow up of my team activity job, I use one list of problem we are working on, day by day;<o:p></o:p>
Each row contains one single problem.<o:p></o:p>
Each column contains data (many) related to the problem (problem name, when received, who is in charge etc.)<o:p></o:p>
<o:p></o:p>
One of the column contains “step” of problem (for example “waiting sample”, “checking sample”, “making test”, etc).<o:p></o:p>
We have with team weekly followup of activity, updating the status of each problem according to real progress.<o:p></o:p>
<o:p></o:p>
What I would like to have (also to investigate bottleneck at the end of activity) is a way to “count” days we spent in any step of activity (please consider that sometimes we change status more than one time on the single “step”, for ex we can have “checking sample” à “making test” à “checking sample”…<o:p></o:p>
<o:p></o:p>
So, I’m considering to have inside my sheet, some additional column with label to represent each step (for ex: waiting sample,checking sample,making investigation,making test …) and in the correspondant row of each problem it should be the number of days spent for each step<o:p></o:p>
<o:p></o:p>
How to do?<o:p></o:p>
Basically I think it should be some function registering the date when the status of "step cell" has been modified (counting how many days past since previous modification)and putting result (number of days) in the correspondent cell of each step time spent, adding to the previous number of days if different from 0…<o:p></o:p>
<o:p></o:p>
Easy to say…but how to realize?<o:p></o:p>
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Re: How to count time spent by making each step activity?

receivedin chargesample rec'dchecking sampletestinganalysingfinal reportSTATUStotal days
problem101/08/2017bill04/08/201705/08/201706/08/201708/08/2017analysing
problem202/08/2017fred03/08/201703/08/201704/08/201705/08/201706/08/2017COMPLETE4
problem302/08/2017tom02/08/201703/08/201705/08/2017testing
problem402/08/2017sid03/08/201710/08/2017checking sample
problem503/08/2017dave05/08/2017sample rec'd
formula of I2 (analysing)
=IF(H2="",OFFSET($A2,-ROW()+1,MATCH(LARGE($B2:$G2,1),$B2:$G2,0)),"COMPLETE")
if there is a date in column H (final report)
the status automatically shows complete
and when col I = complete
the total days is automatically calculated
if there is a target date for each stage
easy to conditionally format red or green to highlight delays
maybe only a target date for completion ???

<colgroup><col><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
Re: How to count time spent by making each step activity?

Thank you Oldbrewer for your support.
Your way I understood, but I'd like to use a different way, and my point is not related to target to finish (of course we have a target, but my today issue is not related to that..)
Due to in our activity we have (for example) 6 (fixed) step, but each step can be ongoing several time, I'd like to have one cell only for each problem that must be updated (like a flag to set) when the related activity is moving to another step (between the 6 total step).
And each time this cell is changed as condition (between the 6 possible step) automatically the correspondent (same row) step cell will be updated with total number of days for that step.
Example (I just show 4 step of 6)

N. Resp. activity step ..... ...... Waiting part Checking part Testing part Making invest.
1 Bill checking part .... .... 13 5 0 0
2 Tom testing part .... .... 25 1 2 0
3 Jimmy waiting part ..... ..... 3 0 0 0
4 Robert making invest. ..... .... 1 1 6 3
5 ........ ......


As said some time we need to "touch" one activity step more than one time, so days counter should restart from the number of days already spent previously for the same step.
I hope enough clear, if need I will attach excel file example to show better
Thank you!
 
Upvote 0
Re: How to count time spent by making each step activity?

maybe you need a "step complete" column for each step, so even if you moved on to the next step, then had to go back to previous step the date would reflect the true date that a step was finished.....
 
Upvote 0
Re: How to count time spent by making each step activity?

I hope with this example it will be more clear what I need

Foglio1

ABCDEFGHIJKLM
1N.Kind of problemIn charge to:Coming fromTeam stepInvestigation startedInvestigation closedWaiting part days spentSample check days spentInvestigation days spentMaking test days spentStep 5 days spentStep 6 days spent
21Broken wheelBillItalyWaiting part24/09/20172300000
32Pressure lostJeffNorwaySample check21/09/20173220000
43Rust on bumberRonaldUKWaiting part23/10/2017300000
54Oil leakageNickSwedenInvestigation06/05/2017273682500
65Abnormal noiseRobertFranceMaking test28/08/201716420300
76Paint peelingJohnUS08/01/201705/10/2017361540532525
8
9
10
11

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4
 
Upvote 0

Forum statistics

Threads
1,216,102
Messages
6,128,853
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top