Hi, all
Previously I have 2 sheets, DTE and DTE_Raw in the same Excel file. But this time, the DTE_Raw has been exported to its own Excel file with its location at desktop.
Originally my DTE_Raw only has parameters: Plant, Event Start Date, Year-Month, product, Average Stop Hours, Main and Comments
But my new raw file has more addition of parameters, hence the copy pasting code would need to be altered too, I believe.
My excerpt of code originally looks like this:
Dim Shop As String
Dim Shop2 As String
Application.ScreenUpdating = False
Shop = Sheets("DTE").Range("K2")
Shop2 = Sheets("DTE").Range("M2")
With Sheets("DTE_Raw")
With .Cells(1).CurrentRegion
.AutoFilter 1, Shop
.AutoFilter 3, Shop2
On Error Resume Next
Set MATCHES = .Offset(1, 0).SpecialCells(12)
If Not MATCHES Is Nothing Then MATCHES.Copy Sheets("DTE").Range("A2")
On Error GoTo 0
End With
.AutoFilterMode = False
End With
Dim rw As Long, x As Long, lrr As Long
lrr = Sheets("DTE").Cells(Rows.Count, 1).End(xlUp).row
For x = 1 To lrr
If Sheets("DTE").Cells(x, 1) = Sheets("DTE").Range("K2") Then rw = rw + 1
If rw = 5 Then
Sheets("DTE").Range("A1:G1").Copy
Sheets("DTE").Cells(x, 1).Insert
rw = 0
End If
Next
This code was supposed to filter the parameters in DTE_Raw which has the same plant and year-month and then, copy paste the data to DTE sheet. Next, with every 5 plant, the header of the table in DTE sheet will duplicate itself (insert copied cell function).
May I know how may I alter this code? Hereby I attached both Excel files, one raw file and another one has the table. In the raw file, I have to delete the rest of the data due to confidentiality matter but the location of the parameters would be just like that in the raw file.
Hope anyone can give me a hand in this. Thanks!
Bookmarks