A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Time management



 
 
Thread Tools Display Modes
  #1  
Old June 22nd, 2009, 05:41 PM posted to microsoft.public.excel.worksheet.functions
OKY
external usenet poster
 
Posts: 11
Default Time management

Hello,
I have a new job and to make it easy I need to have a worksheet where I can
track my service technicians.
In other words we have technicians who are schedule to complete jobs at
different time frames. Lets say Tech1 has 3 jobs between 8am to 11am, 2 jobs
between 11am to 2pm, etc, ect. I need the worksheet to change cell colors
according to the time, taht way if a technician is running late the cell for
that job will change to red..
example:
TECH# TECH NAME PASS/FAIL TIME FRAME STATUS
25 MIKE PASS 8AM - 11AM DONE

Could this be acomplished? please help me. Also be patient with me to
explain in detail your answers.. I'm kind of newbie..


thank you
  #2  
Old June 22nd, 2009, 06:10 PM posted to microsoft.public.excel.worksheet.functions
Luke M
external usenet poster
 
Posts: 2,672
Default Time management

My first recommendation would be to break the TIME FRAME cell into 2 seperate
columns, a START and FINISH. This will make it much easier for calculations.
For your coloring scheme, you'll want to use the NOW function and Conditional
Formatting. (these topics can be found in Help File).

Let's say you want the start column to turn red if the start time has
arrived (or has past). Select then cell (for example, say D2), then go to
Format - Conditional Format. From the first dropdown, select "Formula is". In
the next box, input this formula:
=D2=MOD(NOW,1)
Click the format button, pattern tab, choose red. Hit 'ok', then 'ok' again.
*The MOD function removes the date from NOW, leaving just the time*

Or, let's say we want the cell to change color only if time ahs passed, and
cell C2 does not equal "pass"

=AND(D2=MOD(NOW,1),C2"pass")


Try to play around a little with this on your own, referring to help file
for ideas. If you get stuck, feel free to ask the group, but give more
specific detail as to your setup and what exactly you want to happen.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"OKY" wrote:

Hello,
I have a new job and to make it easy I need to have a worksheet where I can
track my service technicians.
In other words we have technicians who are schedule to complete jobs at
different time frames. Lets say Tech1 has 3 jobs between 8am to 11am, 2 jobs
between 11am to 2pm, etc, ect. I need the worksheet to change cell colors
according to the time, taht way if a technician is running late the cell for
that job will change to red..
example:
TECH# TECH NAME PASS/FAIL TIME FRAME STATUS
25 MIKE PASS 8AM - 11AM DONE

Could this be acomplished? please help me. Also be patient with me to
explain in detail your answers.. I'm kind of newbie..


thank you

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:07 PM.


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