Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
Here's my problem: - In sheets(1), identify a particular cell if it is BLANK. (for n = 5000 to 1 step -1) - Copy entire row (containing this particular blank cell). - Select the next sheet (activate) - paste the row from sheets(1) to this sheet. (for n1 = 1 to 500) i.e. identify the next available row before pasting. In short, I need to display (a list in the next sheet) of all those rows (in sheets(1)) that have a blank cell. ActiveWorkbook.Worksheets(1).Select For n = 5000 To 1 Step -1 If Cells(n, 2) < "" And Cells(n, 10) = "" Then Range(Cells(n, 1), Cells(n, 19)).Select Selection.Copy GoTo line1 End If Next n line1: ActiveWorkbook.Worksheets(2).Select For N1 = 1 To 500 If Cells(N1, 2) < "" Then Selection.Paste End If End Next N1 I am trying this approach - but am still stuck. Appreciate your help. Tks/Brgds cskgg --- Message posted from http://www.ExcelForum.com/ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find end of column and paste formula in range | Excel Worksheet Functions | |||
Copy & Paste Across Sheet Tabs in a Range of Cells | Excel Discussion (Misc queries) | |||
Macro - copy a range and paste it in a new sheet 12 times | Excel Worksheet Functions | |||
Paste range of values into filtered sheet | Excel Discussion (Misc queries) | |||
Search, find, copy muliple cells from new sheet and paste | Excel Programming |