Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
cityfc
 
Posts: n/a
Default After a cell changes colour when a date is near

When the cell changes to a specific colour say a12 goes red when a date is
within 30 days (a12 is a date an assessment is due) can a12 and a1 (which a
persons name is in a1) be put on a different worksheet and the same for each
row so i can have a list of names and assessments on a seperate worksheet to
print off

so it would look like this

A N OTHER FDA 02-JAN-06
A BODY SUMMARY 02-JAN-06


  #2   Report Post  
Posted to microsoft.public.excel.misc
Bernie Deitrick
 
Posts: n/a
Default After a cell changes colour when a date is near

You could use a filter to do that. Select your table, then use Data Filter... Auto Filter. Then
use Custom on your date field, and some combination of "Less than or equal to", " Greater than or
equal to" etc. will allow you to only show the rows with the dates that you are interested in,
prior to printing.

HTH,
Bernie
MS Excel MVP


"cityfc" wrote in message
...
When the cell changes to a specific colour say a12 goes red when a date is
within 30 days (a12 is a date an assessment is due) can a12 and a1 (which a
persons name is in a1) be put on a different worksheet and the same for each
row so i can have a list of names and assessments on a seperate worksheet to
print off

so it would look like this

A N OTHER FDA 02-JAN-06
A BODY SUMMARY 02-JAN-06




  #3   Report Post  
Posted to microsoft.public.excel.misc
cityfc
 
Posts: n/a
Default After a cell changes colour when a date is near

Thanks for the quick responce
that would be great if it was just me who dealt with the matrix but other
users who aren't to fluent deal with it and i was hoping if there was a
formula, macro etc that could be inserted that would be great and they would
only have to press print

"cityfc" wrote:

When the cell changes to a specific colour say a12 goes red when a date is
within 30 days (a12 is a date an assessment is due) can a12 and a1 (which a
persons name is in a1) be put on a different worksheet and the same for each
row so i can have a list of names and assessments on a seperate worksheet to
print off

so it would look like this

A N OTHER FDA 02-JAN-06
A BODY SUMMARY 02-JAN-06


  #4   Report Post  
Posted to microsoft.public.excel.misc
Bernie Deitrick
 
Posts: n/a
Default After a cell changes colour when a date is near

You could use a macro like the one below, which would filter the table starting in cell A1, based on
dates in column B, showing values from today until next week (the + 7 part). It will then print
the table. Assing the macro to a button and the user can just press the button to filter and print.

Post back if you need help getting the specific date range that you want.

HTH,
Bernie
MS Excel MVP

Sub FilterAndPrintOneWeek()

Range("A1").CurrentRegion.AutoFilter _
Field:=2, Criteria1:="=" & Date, Operator:=xlAnd, _
Criteria2:="<=" & Date + 7
ActiveSheet.PrintOut
Range("A1").CurrentRegion.AutoFilter

End Sub


"cityfc" wrote in message
...
Thanks for the quick responce
that would be great if it was just me who dealt with the matrix but other
users who aren't to fluent deal with it and i was hoping if there was a
formula, macro etc that could be inserted that would be great and they would
only have to press print

"cityfc" wrote:

When the cell changes to a specific colour say a12 goes red when a date is
within 30 days (a12 is a date an assessment is due) can a12 and a1 (which a
persons name is in a1) be put on a different worksheet and the same for each
row so i can have a list of names and assessments on a seperate worksheet to
print off

so it would look like this

A N OTHER FDA 02-JAN-06
A BODY SUMMARY 02-JAN-06




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 change cell colour, X no days from inserted date in Excel? Bayvon Excel Worksheet Functions 0 October 14th 05 05:17 AM
cell color change based on due date MINAL ZUNKE New Users to Excel 2 June 30th 05 09:24 PM
cell color index comparison MINAL ZUNKE New Users to Excel 1 June 30th 05 07:11 AM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM
Extract date from cell Eric Excel Worksheet Functions 3 November 4th 04 06:37 PM


All times are GMT +1. The time now is 07:03 AM.

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

About Us

"It's about Microsoft Excel"