Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default change cell contents to bold

Newbie here.... working on a spreadsheet that we need to enter times that we
receive faxes from our 3rd party... we enter times in this format 3:30 is
3:30 pm. the workbook is shared on a network there are several people
entering data at one time... what i need to know is can i change to
text(time) that is entered into a cell if the time is after the the required
time. example all our faxes are to sent to us prior to 3:00pm daily we use
the time stamp from the fax machine as the time we received the fax if the
time stamp is after 3:00pm say 3:20 I need the 3:20 that is entered to become
BOLD face for the fax was receive after the deadline of 3:00pm?

is there a way that i can program this to work?

thanks in advance

Dave....
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default change cell contents to bold

You can use conditional formatting to do this, but it might be a bit
awkward for you - if you enter 3:00 in cell then Excel will take it to
be 3:00am, and so assuming you also get faxes between 8:00am and noon
you will have to be a bit careful about the CF formula.

Hope this helps.

Pete

On Sep 19, 4:30 pm, dave@penneys
wrote:
Newbie here.... working on a spreadsheet that we need to enter times that we
receive faxes from our 3rd party... we enter times in this format 3:30 is
3:30 pm. the workbook is shared on a network there are several people
entering data at one time... what i need to know is can i change to
text(time) that is entered into a cell if the time is after the the required
time. example all our faxes are to sent to us prior to 3:00pm daily we use
the time stamp from the fax machine as the time we received the fax if the
time stamp is after 3:00pm say 3:20 I need the 3:20 that is entered to become
BOLD face for the fax was receive after the deadline of 3:00pm?

is there a way that i can program this to work?

thanks in advance

Dave....



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default change cell contents to bold

Pete actually we don't get faxes before 12:00 noon the cut off times for the
faxes are 3pm and 6pm... we enter both times.

Dave

"Pete_UK" wrote:

You can use conditional formatting to do this, but it might be a bit
awkward for you - if you enter 3:00 in cell then Excel will take it to
be 3:00am, and so assuming you also get faxes between 8:00am and noon
you will have to be a bit careful about the CF formula.

Hope this helps.

Pete

On Sep 19, 4:30 pm, dave@penneys
wrote:
Newbie here.... working on a spreadsheet that we need to enter times that we
receive faxes from our 3rd party... we enter times in this format 3:30 is
3:30 pm. the workbook is shared on a network there are several people
entering data at one time... what i need to know is can i change to
text(time) that is entered into a cell if the time is after the the required
time. example all our faxes are to sent to us prior to 3:00pm daily we use
the time stamp from the fax machine as the time we received the fax if the
time stamp is after 3:00pm say 3:20 I need the 3:20 that is entered to become
BOLD face for the fax was receive after the deadline of 3:00pm?

is there a way that i can program this to work?

thanks in advance

Dave....




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default change cell contents to bold

OK, you could highlight both conditions using conditional formatting.
Assuming your times are in column A starting at A1, highlight all the
cells from A1 downwards and then click on Format | Conditional
Formatting. In the panel that pops up select Formula is rather than
Cell Contents Is and enter this formula:

=A1=TIMEVALUE("6:00")

then click on the format button, select the Patterns tab and choose
something like bright green. Click OK and then click Add to set up a
second condition. Choose Formula Is again in the second CF panel and
enter this formula:

=A1TIMEVALUE("3:00")

click the Format button, Patterns tab and choose a different colour,
eg Red. Click OK twice to get out of the CF panel and you should now
find all times beyond 5:59 are highlighted in green and all times
between 3:00 and 5:59 are highlighted in red - stands out more clearly
than just Bold.

Sometimes Excel will try to help and put quotes around the formulae,
so if you do not get the effects then highlight the cells again
starting with A1 and Format | Conditional Formatting to check that the
formulae are exactly as above - delete any extra quotes.

If you want to apply this to other cells you can use the Format
Painter.

Hope this helps.

Pete

On Sep 19, 6:44 pm, dave@penneys
wrote:
Pete actually we don't get faxes before 12:00 noon the cut off times for the
faxes are 3pm and 6pm... we enter both times.

Dave



"Pete_UK" wrote:
You can use conditional formatting to do this, but it might be a bit
awkward for you - if you enter 3:00 in cell then Excel will take it to
be 3:00am, and so assuming you also get faxes between 8:00am and noon
you will have to be a bit careful about the CF formula.


Hope this helps.


Pete


On Sep 19, 4:30 pm, dave@penneys
wrote:
Newbie here.... working on a spreadsheet that we need to enter times that we
receive faxes from our 3rd party... we enter times in this format 3:30 is
3:30 pm. the workbook is shared on a network there are several people
entering data at one time... what i need to know is can i change to
text(time) that is entered into a cell if the time is after the the required
time. example all our faxes are to sent to us prior to 3:00pm daily we use
the time stamp from the fax machine as the time we received the fax if the
time stamp is after 3:00pm say 3:20 I need the 3:20 that is entered to become
BOLD face for the fax was receive after the deadline of 3:00pm?


is there a way that i can program this to work?


thanks in advance


Dave....- Hide quoted text -


- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default change cell contents to bold

Hiya Pete,

worked like a charm.. thanks...

"Pete_UK" wrote:

OK, you could highlight both conditions using conditional formatting.
Assuming your times are in column A starting at A1, highlight all the
cells from A1 downwards and then click on Format | Conditional
Formatting. In the panel that pops up select Formula is rather than
Cell Contents Is and enter this formula:

=A1=TIMEVALUE("6:00")

then click on the format button, select the Patterns tab and choose
something like bright green. Click OK and then click Add to set up a
second condition. Choose Formula Is again in the second CF panel and
enter this formula:

=A1TIMEVALUE("3:00")

click the Format button, Patterns tab and choose a different colour,
eg Red. Click OK twice to get out of the CF panel and you should now
find all times beyond 5:59 are highlighted in green and all times
between 3:00 and 5:59 are highlighted in red - stands out more clearly
than just Bold.

Sometimes Excel will try to help and put quotes around the formulae,
so if you do not get the effects then highlight the cells again
starting with A1 and Format | Conditional Formatting to check that the
formulae are exactly as above - delete any extra quotes.

If you want to apply this to other cells you can use the Format
Painter.

Hope this helps.

Pete

On Sep 19, 6:44 pm, dave@penneys
wrote:
Pete actually we don't get faxes before 12:00 noon the cut off times for the
faxes are 3pm and 6pm... we enter both times.

Dave



"Pete_UK" wrote:
You can use conditional formatting to do this, but it might be a bit
awkward for you - if you enter 3:00 in cell then Excel will take it to
be 3:00am, and so assuming you also get faxes between 8:00am and noon
you will have to be a bit careful about the CF formula.


Hope this helps.


Pete


On Sep 19, 4:30 pm, dave@penneys
wrote:
Newbie here.... working on a spreadsheet that we need to enter times that we
receive faxes from our 3rd party... we enter times in this format 3:30 is
3:30 pm. the workbook is shared on a network there are several people
entering data at one time... what i need to know is can i change to
text(time) that is entered into a cell if the time is after the the required
time. example all our faxes are to sent to us prior to 3:00pm daily we use
the time stamp from the fax machine as the time we received the fax if the
time stamp is after 3:00pm say 3:20 I need the 3:20 that is entered to become
BOLD face for the fax was receive after the deadline of 3:00pm?


is there a way that i can program this to work?


thanks in advance


Dave....- Hide quoted text -


- Show quoted text -






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default change cell contents to bold

You're welcome, Dave - thanks for feeding back.

Pete

On Sep 20, 6:58 pm, dave@penneys
wrote:
Hiya Pete,

worked like a charm.. thanks...



"Pete_UK" wrote:
OK, you could highlight both conditions using conditional formatting.
Assuming your times are in column A starting at A1, highlight all the
cells from A1 downwards and then click on Format | Conditional
Formatting. In the panel that pops up select Formula is rather than
Cell Contents Is and enter this formula:


=A1=TIMEVALUE("6:00")


then click on the format button, select the Patterns tab and choose
something like bright green. Click OK and then click Add to set up a
second condition. Choose Formula Is again in the second CF panel and
enter this formula:


=A1TIMEVALUE("3:00")


click the Format button, Patterns tab and choose a different colour,
eg Red. Click OK twice to get out of the CF panel and you should now
find all times beyond 5:59 are highlighted in green and all times
between 3:00 and 5:59 are highlighted in red - stands out more clearly
than just Bold.


Sometimes Excel will try to help and put quotes around the formulae,
so if you do not get the effects then highlight the cells again
starting with A1 and Format | Conditional Formatting to check that the
formulae are exactly as above - delete any extra quotes.


If you want to apply this to other cells you can use the Format
Painter.


Hope this helps.


Pete


On Sep 19, 6:44 pm, dave@penneys
wrote:
Pete actually we don't get faxes before 12:00 noon the cut off times for the
faxes are 3pm and 6pm... we enter both times.


Dave


"Pete_UK" wrote:
You can use conditional formatting to do this, but it might be a bit
awkward for you - if you enter 3:00 in cell then Excel will take it to
be 3:00am, and so assuming you also get faxes between 8:00am and noon
you will have to be a bit careful about the CF formula.


Hope this helps.


Pete


On Sep 19, 4:30 pm, dave@penneys
wrote:
Newbie here.... working on a spreadsheet that we need to enter times that we
receive faxes from our 3rd party... we enter times in this format 3:30 is
3:30 pm. the workbook is shared on a network there are several people
entering data at one time... what i need to know is can i change to
text(time) that is entered into a cell if the time is after the the required
time. example all our faxes are to sent to us prior to 3:00pm daily we use
the time stamp from the fax machine as the time we received the fax if the
time stamp is after 3:00pm say 3:20 I need the 3:20 that is entered to become
BOLD face for the fax was receive after the deadline of 3:00pm?


is there a way that i can program this to work?


thanks in advance


Dave....- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



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
Join bold and non-bold text in one cell bkincaid Excel Discussion (Misc queries) 3 March 21st 06 12:58 AM
need to change writing to bold by only typing, not changing cell wvhilltop Excel Worksheet Functions 1 January 17th 06 07:08 PM
Change cell color based on contents bre Excel Discussion (Misc queries) 2 November 10th 05 12:39 AM
change cell shading whenever contents different from previous cell zooeyhallne Excel Discussion (Misc queries) 3 June 6th 05 09:59 PM
Insert new row as cell contents change George Excel Discussion (Misc queries) 2 January 26th 05 11:47 AM


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