+ Reply to Thread
Results 1 to 31 of 31

Copy WHOLE Row if citeria matches

Hybrid View

  1. #1
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Copy WHOLE Row if citeria matches

    Hi Everyone

    Really basic user here but please can someone help me with the attached spreadsheet. I need to be able to copy the information of the WHOLE row automatically if the criteria in 'N' shows 'SOLD'. I dont want to have to run a Macros (pressing Alt + F8 everytime) if I can help it. Or if a macros is running will this automatically update when new information is updated?

    The spreadsheet will be continually updated therefore I need the Macros to be set to an extremely large row range, or if someone can advise which part of the Macros needs to be updated for this.

    Thanks

    Hayley
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Hi, This is my first time posting on this forum, but I think I've made you a Macro that works. I'd really love some input on it.
    Sub aa()
        Dim OutSH As Worksheet
        Dim DataSH As Worksheet
        Dim Filas As Integer
        Dim CurrentCell as range
    
        Set OutSH = Sheets("Hoja2")
        Set DataSH = Sheets("hoja1")
        Set CurrentCell
        
        Application.ScreenUpdating = False
        
        Filas = DataSH.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
        
        OutSH.Select
        Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Select
        
        DataSH.Select
        Range("N2").Select
        
        For i = 1 To Filas
            If ActiveCell.Value = "SOLD" Then
                ActiveCell.EntireRow.Copy
                OutSH.Select
                ActiveSheet.Paste
                ActiveCell.Offset(1, 0).Select
                DataSH.Select
                ActiveCell.EntireRow.Delete
                i = i - 1
                Filas = Filas - 1
                
            End If
            
            Cells(i, 14).Select
        Next
        
        Application.ScreenUpdating = True
        Range("N2").Select
        
    End Sub
    This works as long as the cells on column N are properly marked as SOLD (in CAPS) and Worksheets are Named Hoja1 for data Sheet and Hoja2 for OutputSheet should you requiere this differently just change the code. As for the using it without pressing Alt-f8 you could insert a button to activate the macro, but it might get in the way of your data.

    Please try it and let me know if you need something else.

    EDIT: This goes back and forth a lot in between worksheets, maybe someone more knowledgable can provide a sleeker cycle.
    Last edited by wayusei; 01-21-2013 at 10:24 PM. Reason: added some possible improvements

  3. #3
    Registered User
    Join Date
    11-13-2012
    Location
    Singapore
    MS-Off Ver
    Excel 2003, 2010
    Posts
    73

    Re: Copy WHOLE Row if citeria matches

    what do you mean by copying the whole row? can you be more specific? you can filter the table that shows 'SOLD' and then copy everything from there. Is this what you meant? Sorry I don't quite get it.

  4. #4
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    wayusei - for some reason it is now saying my project is locked when trying to create the macros?!?!

    rename - I dont want to have to manually filter the information on sheet1. I want the macros to automatically copy the whole row if 'N' shows sold. for example it would pull the customers name, address etc

  5. #5
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    I Got that same error when I opened the file you provided. I thought it was something you intended. To work with your data I copied it into a new workbook.

  6. #6
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    wayusei I did the above and copied the above but got a suntax error

  7. #7
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Did you rename the sheets or the variables?
    Attached Files Attached Files
    Last edited by wayusei; 01-21-2013 at 11:06 PM.

  8. #8
    Registered User
    Join Date
    11-13-2012
    Location
    Singapore
    MS-Off Ver
    Excel 2003, 2010
    Posts
    73

    Re: Copy WHOLE Row if citeria matches

    Your file vba is locked is because ur file is shared file and excel does not allow macro to run in shared file. you need to unshare the file before runing any macros.

  9. #9
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    yes I had. Whoops. The problem is this moves the information over not copies it

  10. #10
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Sorry my bad, I thought you wanted the information moved. Just remove these codelines
           ActiveCell.EntireRow.Delete
           i = i - 1
           Filas = Filas - 1

  11. #11
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    That did it. Wow thank you so much!!!!!!! I never would of known how to create that! Very grateful!

  12. #12
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    wayusei - if I wanted to add more sheets so sheet 4 does the same filter of the info on sheet 3 (all the same format) how would I amend the code?

  13. #13
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Change these lines
        Set OutSH = Sheets("OutputDataSheetName")
        Set DataSH = Sheets("DataSheetName")
    In the original code they're named "Hoja1" and "Hoja2" because I'm using Excel in spanish, but changing that two names should work for any sheets. Of course, if you want to use this code for several sheets you have to copy and edit the code.

  14. #14
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    Yeah I did this and amended the above section however this came up with the syntax error again

  15. #15
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Did you renamed the macro?

  16. #16
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    I think i have sorted it. You cant get this to work across different files can you?

  17. #17
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    I added a new module and just amended the above info

  18. #18
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Ok. I edited the macro on the lines and changed the macro name. Again this is named Hoja3 and Hoja4 because I'm using excel in spanish.

    Sub aa2()
        Dim OutSH As Worksheet
        Dim DataSH As Worksheet
        Dim Filas As Integer
            
        Set OutSH = Sheets("Hoja4")
        Set DataSH = Sheets("hoja3")
        
        Application.ScreenUpdating = False
        
        Filas = DataSH.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
        
        OutSH.Select
        Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Select
        
        DataSH.Select
        Range("N2").Select
        
        For i = 1 To Filas
            If ActiveCell.Value = "SOLD" Then
                ActiveCell.EntireRow.Copy
                OutSH.Select
                ActiveSheet.Paste
                ActiveCell.Offset(1, 0).Select
                DataSH.Select
                
            End If
            
            Cells(i, 14).Select
        Next
        
        Application.ScreenUpdating = True
        Range("N2").Select
        
    
        
    End Sub

  19. #19
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Not right now, but it'd make a nice project for tomorrow if you don't mind. Please provide me the path for each file, and the names used by each worksheet (Data and Output Worksheet, and Data and Output Path and Filename)

  20. #20
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    Z:\Sales leads\call centre 2013.xlsx 'sheet 1'
    to be input into
    Z:\Filters\Commisions.xlsm
    Sheet2

    If you can do this it would be AMAZING

  21. #21
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Here you go.

    Sub aa()
        Dim DataWB As Workbook
        Dim OutWB As Workbook
        Dim OutSH As String
        Dim DataSH As String
        Dim Filas As Integer
        
        DataSH = "Sheet 1"
        OutSH = "Sheet2"
        
        Set DataWB = ActiveWorkbook
            
        Workbooks.Open ("Z:\Filters\Commisions.xlsm")
        Set OutWB = ActiveWorkbook
        
        DataWB.Activate
           
        Application.ScreenUpdating = False
        
        Filas = Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
        
        OutWB.Sheets(OutSH).Activate
        Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Select
        
        DataWB.Sheets(DataSH).Activate
        Range("N2").Select
        
        For i = 1 To Filas
            If ActiveCell.Value = "SOLD" Then
                ActiveCell.EntireRow.Copy
                OutWB.Sheets(OutSH).Activate
                ActiveSheet.Paste
                ActiveCell.Offset(1, 0).Select
                DataWB.Sheets(DataSH).Activate
                 
            End If
            
            Cells(i, 14).Select
        Next
        
        Application.ScreenUpdating = True
        Range("N2").Select
        
    
        
    End Sub
    Remember the name of the Workbooks, Worksheets and Path to Output Workbook.

    Data> Worksheet = "Sheet 1"
    Workbook = irrelevant
    Path = irrelevant

    Output> Worksheet = "Sheet2" (without spaces)
    Path & Workbook = "Z:\Filters\Commisions.xlsm"

    Try it and reply.

  22. #22
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    Hi

    Thank you for this. I tried it this morning and got the attached error
    Any thoughts?
    Attached Files Attached Files

  23. #23
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    MMM maybe a hidden worksheet? Sometimes this causes trouble running macros. The code seems to be working fine on my PC. :/

  24. #24
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    None of the worksheets are hidden. Are you able to attach the sheet you have that it works on?

  25. #25
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    Sure, here you go
    Attached Files Attached Files

  26. #26
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    Hoja3 doesnt seem to pull through all of the rows documented on the sales leads 2013

  27. #27
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    Yeah it works on yours. Thats amazing how you have created that! This will save so much copy & pasting for me and the risk of error. Thank you so much

  28. #28
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    There is no code working on "Hoja 3". You could easily edit the code just by changing the variables, macroname, and destination name.

  29. #29
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    Oh this is my fault. Think I was lost in all the coding

    I needed hoja3 to pull through the information from file path Z:\Sales leads\CALL CENTRE 2013.XLSX
    hoja1 to pull though Z:\Sales leads\CALL CENTRE RESULTS.XLSX

  30. #30
    Registered User
    Join Date
    01-20-2013
    Location
    Sydney, Australia
    MS-Off Ver
    Excel 2010
    Posts
    28

    Re: Copy WHOLE Row if citeria matches

    wayusei are you able to help please?

  31. #31
    Registered User
    Join Date
    01-15-2013
    Location
    Leon, Mexico
    MS-Off Ver
    Excel 2003
    Posts
    23

    Re: Copy WHOLE Row if citeria matches

    I don't understand what is what you need.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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