Results 1 to 28 of 28

try to Copy entire Row if active cell equals variable

Threaded View

  1. #28
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: try to Copy entire Row if active cell equals variable

    Not sure what else to do....Create a new sample with a few of your current entries and test the code again....Also upload so that we can test. See if there is a difference.
    Edit:

    Herewith code that solves this Threads issue.
    Option Explicit
    Private Sub CommandButton1_Click()
    Dim payrolldate As String
    Dim nWb As Workbook, wb As Workbook
    Dim lRow As Long, nRow As Long
    Dim i As Double
    Dim copyrange As Range
    Dim ws As Worksheet, ns As Worksheet
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    Set wb = ActiveWorkbook
    Set ws = wb.Sheets("Labor_Transfer_Table")
    Set nWb = Workbooks.Add
    Set ns = nWb.Sheets("Sheet1")
    lRow = ws.Cells(Rows.Count, "F").End(xlUp).Row
    ErrorHandler:
    payrolldate = InputBox("Please enter the Payroll Starting Date", Default:="YYYYMMDD")
    ws.Activate
    With ws
    For i = 2 To lRow
        If Cells(i, 6) = payrolldate Then
            Do While Cells(i, 6).Value = payrolldate
                nRow = ns.Range("A" & Rows.Count).End(xlUp).Row + 1
                Cells(i, 6).EntireRow.Copy Destination:=ns.Range("A" & nRow)
                ws.Activate
                i = i + 1
            Loop
            ns.Activate
                With ns
                    .SaveAs Filename:="C:\Users\matt_f\Desktop\PaycorOnsite\Time_Clock_Import\Pre-conversion\Payroll.csv", FileFormat:=xlCSV
                    ActiveWorkbook.Close
                    ActiveWorkbook.Saved = True
                End With
                MsgBox "File has been created and saved"
                GoTo EndMe
            ElseIf i = lRow Then
                MsgBox "No Payroll records with that Starting Date Exists"
                GoTo ErrorHandler
        End If
    Next i
    End With
    EndMe:
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    Application.Quit
    End Sub
    Attached Files Attached Files
    Last edited by Sintek; 04-26-2017 at 03:11 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Macro to search Active cell, then copy entire row & sort the list
    By teaboi in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 09-08-2016, 09:50 AM
  2. [SOLVED] Return entire row if cell equals
    By Moedeb27 in forum Excel General
    Replies: 5
    Last Post: 08-03-2016, 07:28 PM
  3. Replies: 3
    Last Post: 07-16-2015, 09:29 AM
  4. [SOLVED] Copy Entire Row if Cell Value Equals X or Y or Z
    By TShelt in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-01-2014, 04:38 PM
  5. Replies: 1
    Last Post: 07-31-2013, 10:21 AM
  6. [SOLVED] Macro to Copy Entire Rows if Column Equals
    By Andrew.Trevayne in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 06-21-2012, 09:46 PM
  7. Copy Range to New Line - Save Active Cell to Temp Variable
    By ngay528 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-23-2009, 05:00 PM

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