Macro Search and display
Closed
PM
-
Aug 13, 2009 at 04:00 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Aug 13, 2009 at 07:14 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Aug 13, 2009 at 07:14 AM
Related:
- Macro Search and display
- Google.us search - Guide
- Yahoo search history - Guide
- Safe search settings - Guide
- Huawei display check code - Guide
- Download mp3 with lyrics display - Download - Audio playback
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Aug 13, 2009 at 07:14 AM
Aug 13, 2009 at 07:14 AM
use this macro
Sub test() Dim rng As Range, d As Date Set rng = Range(Range("a1"), Range("a1").End(xlDown)) d = Date rng.Cells.Find(what:=d, lookat:=xlWhole).Activate Range(Cells(ActiveCell.Row, "b"), Cells(ActiveCell.Row, "c")).Copy Worksheets("sheet2").Cells(Rows.Count, "a").End(xlUp).Offset(1, 0).PasteSpecial End Sub