Results 1 to 2 of 2

Extracting data from raw file to another file

Threaded View

ell_ Extracting data from raw file... 03-12-2018, 11:14 PM
ell_ Re: Extracting data from raw... 03-14-2018, 10:54 AM
  1. #1
    Forum Contributor
    Join Date
    09-19-2017
    Location
    London
    MS-Off Ver
    2015
    Posts
    169

    Question Extracting data from raw file to another file

    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!
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Extracting data from a CSV file
    By pernes in forum Excel General
    Replies: 4
    Last Post: 03-22-2014, 01:42 PM
  2. Extracting data from file in directory and extracting filename
    By brad999 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-20-2014, 11:21 AM
  3. [SOLVED] Opening file and extracting file name and filepath
    By kenadams378 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-06-2013, 06:51 AM
  4. Extracting certain data from macro file
    By Raju Radhakrishnan in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-09-2013, 03:38 AM
  5. Extracting data from a text file
    By lamore48 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 07-19-2012, 09:53 PM
  6. Creating a .txt file extracting information from a Excel file saving as .resx file
    By AbdallahHajbed in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-19-2012, 09:00 AM
  7. Extracting Data from a .txt file
    By baby_rach in forum Access Programming / VBA / Macros
    Replies: 4
    Last Post: 06-15-2010, 10:09 AM
  8. Extracting and saving data from .csv file
    By bearaman in forum Excel General
    Replies: 5
    Last Post: 03-11-2008, 06:02 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1