Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Using Min function, I was able to find the next (soonest) date, but not able
to color the cell. I used MsgBox to see if any address was assigned to rngFound. Then used rngFound.Cells.Activate to see where the cell was, which resulted way below the list. What did I do wrong? Here is the code: Sub FindNext() Dim myRange As Range Dim answer As String Dim rngFound As Range Set myRange = Worksheets("Sheet5").Range("K2:K80") answer = Application.WorksheetFunction.Min(myRange) Set rngFound = myRange(answer) MsgBox rngFound.Address answer = Format(answer, "mm/dd/yy") MsgBox ("The next date is " & answer) rngFound.Cells.Activate rngFound.Font.ColorIndex = 3 End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I change the color the cell becomes when doing a FIND | Excel Discussion (Misc queries) | |||
Find text in cell based on color value of another cell | Excel Programming | |||
Find the next Cell with interior color using Do Until...Loop | Excel Programming | |||
.Find cell within rng when font color=3 | Excel Programming | |||
Find purple cell color, change to red | Excel Programming |