I have a project that will rearrange the Sheet "GROUP" and format it just like "YTP" sheet. but i dont have an idea how to solve and make it in time. My Problem is how to delete the entire row of YTP sheet if the YTP sheet has an empty row after copying the Data in SHEET GROUP. I have started a code like this:
CODE
Option Explicit
Sub Copy()
'Declaration for copying the entire column of J
Dim lastrow As Long, erow As Long
Dim sRange As Range
Dim sCrange As Range
Dim cell As Range
'End Declare
Set sRange = Sheet2.Range("J10:J350")
Set sCrange = Sheet4.Range("J5:J360")
For Each cell In sRange
If Not IsEmpty(cell) Then
sRange.Copy sCrange
End If
Next cell
End Sub
This is the Image of Group and YTP sheet
If you want to see the excel file, Please comment and i will attached it in here. Please Guys, Help me.