Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
The below given code accepts a date (in "dd.mm.yyyy" format) entered into the cell G3 of worksheet "ARAMA" and then displays the records from the worksheet named "LISTE" that matches with this criteria. I need to modify it so that when I enter a date into Sheet "ARAMA" G3, I want to display all records that has a date equal to or greater (newer) then that date. Can experts here comment on modifying my code? TIA '-------------------------------- Public Sub Aratarih() Range("I2").Value = Time Range("I1").Value = Date Range("A6:I2500").Select Selection.ClearContents ARANAN = Worksheets("ARAMA").Cells(3, 7) Worksheets("ARAMA").Cells(3, 7).Activate If ARANAN = "" Then Range("A6:I2500").Select Selection.ClearContents Worksheets("ARAMA").Cells(4, 9).Value = "" Worksheets("ARAMA").Cells(3, 7).Activate 'Range("I2").Value = Time 'Range("I1").Value = Date Exit Sub End If With Worksheets("LISTE").Range("D2:D62500") Set C = .Find(ARANAN, LookIn:=xlValues) If Not C Is Nothing Then firstAddress = C.Address SAY = 0 Worksheets("ARAMA").Cells(4, 9).Value = "ARANIYOR" Range("I2").Value = Time Range("I1").Value = Date Do Set C = .FindNext(C) adres = C.Address adres = Right(adres, Len(adres) - 1) ky = InStr(1, adres, "$", 1) AD1 = Right(adres, Len(adres) - ky) Worksheets("ARAMA").Cells(6 + SAY, 1).Value = SAY + 1 Worksheets("ARAMA").Cells(6 + SAY, 2).Value = Trim(Worksheets("LISTE").Cells(AD1, 1).Value) Worksheets("ARAMA").Cells(6 + SAY, 5).Value = Trim(Worksheets("LISTE").Cells(AD1, 2).Value) Worksheets("ARAMA").Cells(6 + SAY, 6).Value = Trim(Worksheets("LISTE").Cells(AD1, 3).Value) Worksheets("ARAMA").Cells(6 + SAY, 7).Value = Trim(Worksheets("LISTE").Cells(AD1, 4).Value) Worksheets("ARAMA").Cells(6 + SAY, 8).Value = Trim(Worksheets("LISTE").Cells(AD1, 5).Value) Worksheets("ARAMA").Cells(6 + SAY, 9).Value = Trim(Worksheets("LISTE").Cells(AD1, 6).Value) SAY = SAY + 1 Loop While Not C Is Nothing And C.Address < firstAddress End If Worksheets("ARAMA").Cells(4, 9).Value = SAY End With Range("G3").Select End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Add criteria to sumproduct Greater than or equal to | Excel Worksheet Functions | |||
sumif date is greater than or equal chosen date | Excel Discussion (Misc queries) | |||
sort data rows "greater than or equal" criteria in another cell | Excel Worksheet Functions | |||
Addition to Turn cell red if today is greater or equal to date in cell | New Users to Excel | |||
Turn cell red if today is greater or equal to date in cell | New Users to Excel |