Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 118
Default Cell Blink or message if cells date = today date

How can I get a message indicating which cells - if date in existing
cells(ie date already input) = today's date
Can anybody help pls

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 54
Default Cell Blink or message if cells date = today date

I'd use conditional formatting to do this, but it will change the format of
the cell, it can't make it blink.

Assuming you have selected cell C7, use

FORMAT - CONDITIONAL FORMATTING - FORMULA IS
=C7=TODAY()

And set your format for the cell.

"al007" wrote in message
oups.com...
How can I get a message indicating which cells - if date in existing
cells(ie date already input) = today's date
Can anybody help pls



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default Cell Blink or message if cells date = today date

Hi AL007,

Try using conditional formatting with the condition:

Formula is: =A1=Today()

where A1 is the first cell of interest.

---
Regards,
Norman



"al007" wrote in message
oups.com...
How can I get a message indicating which cells - if date in existing
cells(ie date already input) = today's date
Can anybody help pls



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Cell Blink or message if cells date = today date


Hi,

I do not know how could you blink the cell but you may create a BEEP
sound if condition is matched. Code is as follows:

Sub Match_Criteria()
If (CONDITION) Then
BEEP
End If
End Sub


--
gajendra_vba
------------------------------------------------------------------------
gajendra_vba's Profile: http://www.excelforum.com/member.php...o&userid=29935
View this thread: http://www.excelforum.com/showthread...hreadid=496602

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Cell Blink or message if cells date = today date

The following sub uses a named range, DateArea, and checks each cell in that
range for a value equal to the current date. If a match is found the
interior of the cell is colored red, and if it isn't a match the interior
color is set to none.

This would remove any previously highlighted cell coloring and just color
the ones with the current date.

The named range would encompass the entire worksheet area that you want to
check for dates.

Hope this helps

Sub ColorMeToday()

Dim rng As Range
Dim l As Long
Dim lCounter As Long

Set rng = Range("DateArea")

rng.Range("A1").Select
l = Range("DateArea").Cells.Count
For lCounter = 1 To l
If Range("DateArea").Cells(lCounter) = Date Then
Range("DateArea").Cells(lCounter).Interior. _
Color = vbRed
Else
Range("DateArea").Cells(lCounter).Interior. _
ColorIndex = xlNone
End If
Next lCounter

Set rng = Nothing
Exit Sub

End Sub

--
Kevin Backmann


"al007" wrote:

How can I get a message indicating which cells - if date in existing
cells(ie date already input) = today's date
Can anybody help pls




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
IF TODAY equals date in cell A10, or if TODAY is beyond that date SoupNazi Excel Worksheet Functions 4 April 23rd 07 01:14 AM
Need the formula or macro. If i enter today date in the cell (Row 1,Column 2) and on tab out, the column 1 cell should be filled with "corresponding Day" of the date kakasay Excel Discussion (Misc queries) 1 January 22nd 07 12:31 PM
Need Formula or macro. If i enter today date in the cell (Row 1,Column 2) and on tab out, the column 1 cell should be filled with "corresponding Day" of the date kakasay Excel Discussion (Misc queries) 1 January 22nd 07 12:31 PM
update cells to today date in a list of dates Bill Excel Worksheet Functions 1 March 19th 06 12:30 AM
update cells to today date in a list of dates Bill Excel Worksheet Functions 1 March 17th 06 12:26 AM


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