Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
Can you set up Excel to popup when something is overdue a certain date? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Yes you can but you don't provide too much help on precisely what you want to achieve so perhaps you can build on this. Right click your worksheet, view code and paste this in. As soon as the date in A1 is in the past you get a popup when you activate the sheet. Private Sub Worksheet_Activate() If IsDate(Range("A1").Value) And Range("A1").Value < Date Then MsgBox "Overdue action " & Range("A1").Value End If End Sub Mike "JCS" wrote: Hi Can you set up Excel to popup when something is overdue a certain date? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
What i have is a spreadsheet with dates of PO's ordered, i would like for it to notify me when it passes the date of delivery therefore it being overdue! I'm sorry but i don't understand what you mean by view code?? Thanks for your prompt answer. "Mike H" wrote: Hi, Yes you can but you don't provide too much help on precisely what you want to achieve so perhaps you can build on this. Right click your worksheet, view code and paste this in. As soon as the date in A1 is in the past you get a popup when you activate the sheet. Private Sub Worksheet_Activate() If IsDate(Range("A1").Value) And Range("A1").Value < Date Then MsgBox "Overdue action " & Range("A1").Value End If End Sub Mike "JCS" wrote: Hi Can you set up Excel to popup when something is overdue a certain date? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
if you could settle for a color signal, you could use conditional
formatting......... choose Format, Conditional Formatting: if cell value is greater than or equal to =today()+90 (for example) then select formatting. hth susan On May 22, 7:17*am, JCS wrote: Hi Can you set up Excel to popup when something is overdue a certain date? * |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Overdue Delivery Dates | New Users to Excel | |||
Highlighting overdue tasks | Excel Discussion (Misc queries) | |||
Can I group overdue Invoices by date from an Excel worksheet? | Excel Worksheet Functions | |||
Due Dates / Overdue items | Excel Discussion (Misc queries) | |||
need an overdue date to highlight | Excel Discussion (Misc queries) |