+ Reply to Thread
Results 1 to 3 of 3

Macros help - when cell marked with "X"

Hybrid View

  1. #1
    Registered User
    Join Date
    11-12-2014
    Location
    Houston, Tx
    MS-Off Ver
    Office 2010
    Posts
    2

    Macros help - when cell marked with "X"

    New to macros here. Need to create macro for this:

    If column "W" cells in worksheet called "ECN" contains "X or x" when I click a button called "Complete" the contents and formatting of that row need to cut and paste into a worksheet called "Closed" and then "Closed" worksheet needs to automatically sort least to greatest based on column "A" in "Closed" worksheet.

    Thanks in Advance.

  2. #2
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    re: Macros help - when cell marked with "X"

    Good job on the explanation:

    Sub Copy_Sort()
    Dim ws1 As Worksheet:   Set ws1 = Sheets("ECN")
    Dim ws2 As Worksheet:   Set ws2 = Sheets("Closed")
    Dim i As Long
    
    For i = ws1.Range("W" & Rows.Count).End(xlUp).Row To 2 Step -1
        If LCase(ws1.Range("W" & i)) = "x" Then
            ws1.Range("W" & i).EntireRow.Cut ws2.Range("A" & Rows.Count).End(3)(2)
            Rows(i).Delete
        End If
    Next i
    
    ws2.Sort.SortFields.Clear
    ws2.Sort.SortFields.Add Key:=ws2.Range("A2:A" & ws2.Range("A" & Rows.Count).End(xlUp).Row), SortOn:=xlSortOnValues, Order:=xlAscending
    With ws2.Sort
        .SetRange Range("A2:A" & ws2.Range("A" & Rows.Count).End(xlUp).Row).EntireRow
        .Apply
    End With
        
    End Sub

  3. #3
    Registered User
    Join Date
    11-12-2014
    Location
    Houston, Tx
    MS-Off Ver
    Office 2010
    Posts
    2

    re: Macros help - when cell marked with "X"

    Quote Originally Posted by stnkynts View Post
    Good job on the explanation:

    Sub Copy_Sort()
    Dim ws1 As Worksheet:   Set ws1 = Sheets("ECN")
    Dim ws2 As Worksheet:   Set ws2 = Sheets("Closed")
    Dim i As Long
    
    For i = ws1.Range("W" & Rows.Count).End(xlUp).Row To 2 Step -1
        If LCase(ws1.Range("W" & i)) = "x" Then
            ws1.Range("W" & i).EntireRow.Cut ws2.Range("A" & Rows.Count).End(3)(2)
            Rows(i).Delete
        End If
    Next i
    
    ws2.Sort.SortFields.Clear
    ws2.Sort.SortFields.Add Key:=ws2.Range("A2:A" & ws2.Range("A" & Rows.Count).End(xlUp).Row), SortOn:=xlSortOnValues, Order:=xlAscending
    With ws2.Sort
        .SetRange Range("A2:A" & ws2.Range("A" & Rows.Count).End(xlUp).Row).EntireRow
        .Apply
    End With
        
    End Sub
    Thanks so much!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 1
    Last Post: 06-18-2014, 03:13 AM
  2. Formula to Look Up Marked Cell, and Return Data Above
    By mcmathae in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-22-2014, 05:30 PM
  3. marked blank cell as missing out
    By stoey in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 10-01-2011, 03:36 PM
  4. Replies: 0
    Last Post: 10-27-2010, 01:01 AM
  5. if check box is marked that it also checks another cell
    By AGoldy in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-09-2010, 03:49 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