Thread: Code - Repost
View Single Post
  #12   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Code - Repost

Hi Dan
no file was attached. Just the column/row data in the email body :-)

--
Regards
Frank Kabel
Frankfurt, Germany


Dan wrote:
I did e-mailed you an Excel file...no, the NO is in
column "C"

Thanks,

Dan
-----Original Message-----
Hi Dan
I meant an Excel file :-)
But looking at your text file it seems the 'No' statement is in
column B and not C. So try:
Sub insert_rows()
Dim lastrow As Long
Dim row_index As Long

lastrow = ActiveSheet.Cells(Rows.count, "B").End(xlUp).row
For row_index = lastrow - 1 To 1 Step -1
If Cells(row_index+1, "B").Value ="No" Then
Cells(row_index + 1, "A").resize(1,3).Insert (xlShiftDown)
End If
Next
End Sub

--
Regards
Frank Kabel
Frankfurt, Germany


Dan wrote:
The sample file that I sent is a similar one...

Thanks,

Dan
-----Original Message-----
Hi
if you like email me an example file

--
Regards
Frank Kabel
Frankfurt, Germany


Dan wrote:
Sorry Frank, but no result...maybe something is missing...

Thanks,

Dan
-----Original Message-----
Hi
just tested it again and it works without a problem. It inserts
only cell in columns A-C if column C contains 'No'. And it
inserts it above the 'no'

--
Regards
Frank Kabel
Frankfurt, Germany


Dan wrote:
Hi Frank:

Does not do anything....

The last one was working, but inserted the whole row, this
one:

Sub insert_rows()
Dim lastrow As Long
Dim row_index As Long

lastrow = ActiveSheet.Cells(Rows.count, "C").End (xlUp).row
For row_index = lastrow - 1 To 1 Step -1
If Cells(row_index+1, "C").Value ="No" Then
Cells(row_index + 1, "C").EntireRow.Insert
(xlShiftDown)
End If
Next
End Sub

-----Original Message-----
Hi
-------------------
Hi
try:
Sub insert_rows()
Dim lastrow As Long
Dim row_index As Long

lastrow = ActiveSheet.Cells(Rows.count, "C").End (xlUp).row
For row_index = lastrow - 1 To 1 Step -1
If Cells(row_index+1, "C").Value ="No" Then
Cells(row_index + 1, "A").resize(1,3).Insert
(xlShiftDown) End If
Next
End Sub

--
Regards
Frank Kabel
Frankfurt, Germany


Dan wrote:
Hi Frank:

Sorry, but I did not see any...

Thanks,

Dan
-----Original Message-----
Hi
you have received some answers to this (laso dealing with
only inserting the cells). Have you tried them?

--
Regards
Frank Kabel
Frankfurt, Germany


Dan wrote:
Hi again:

Please let me know, because I did not get an answer, what
would be the code for:
A B C D
1 1 OK a
2 2 OK b
3 4 NO c
d

If No is found higlight the cels a, b,c, and insert a row
above - Not insert the entire row-!

Thank you and I appreciate,

Dan

.
.

.

.


.