This is what I am trying to do.
Pulling data from an import Range A1 to L4800. using excel 2003
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
Pulling data from an import Range A1 to L4800. using excel 2003
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
- If Column A has the string “0001:
- value of the contents of the corresponding row in Column A to be copied to column S same row
- value of the contents of the corresponding row in Column B to be copied to column T same row
- value of the contents of the corresponding row in Column E to be copied to column W same row
- If Column B has the string “Account Total”
- value of the contents of the corresponding row in Column E,G,H,I to be copied to column W,X,Y,Z repsectively same row.
- If Column A does not have the string “0001 and If Column B does not have the string “Account Total, place 0 in column U
- Then I want to run this macro
- Sub Delete_Zero_Rows()
- Dim LastRow As Long, r As Long
- LastRow = Cells(Rows.Count, "U").End(xlUp).Row
- For r = LastRow To 1 Step –1
- If Cells(r, "U") = 0 Then
- Rows(r).EntireRow.Delete
- End If
- Next r
- End Sub