Results 1 to 28 of 28

try to Copy entire Row if active cell equals variable

Threaded View

  1. #11
    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

    Try this: Not happy with the loop. Perhaps someone can add code with a Do While syntax
    Option Explicit
    Private Sub CommandButton1_Click()
    Dim payrolldate As Long
    Dim nWb As Workbook, wb As Workbook
    Dim lRow As Long, nRow As Long
    Dim i As Integer
    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
    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
                nRow = ns.Range("A" & Rows.Count).End(xlUp).Row + 1
                Cells(i, 6).EntireRow.Copy Destination:=ns.Range("A" & nRow)
                ws.Activate
            Else
                MsgBox "Search Completed,No Payroll records with that Starting Date Exists"
                GoTo SaveMe
            End If
        Next i
    End With
    SaveMe:
    ns.Activate
    With ns
        .SaveAs Filename:="C:\Users\matt_f\Desktop\PaycorOnsite\Time_Clock_Import\Pre-conversion\Payroll.csv", FileFormat:=xlCSV
        ActiveWorkbook.Saved = True
    End With
    MsgBox "Has been created and saved"
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    Application.Quit
    End Sub
    Attached Files Attached Files
    Last edited by Sintek; 04-25-2017 at 02:29 PM. Reason: Had to declare a variable

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