+ Reply to Thread
Results 1 to 6 of 6

Move EntireRow below Table1 if range in table contains specific word

  1. #1
    Registered User
    Join Date
    08-15-2014
    Location
    Denmark
    MS-Off Ver
    365 Pro
    Posts
    94

    Move EntireRow below Table1 if range in table contains specific word

    Hi all :-)

    I am completely clueless on how to do this one (my VBA skills are very limited)… For the attached sheet, I need a vba script that checks Range("B") inside "Table1" for any cells with the word "TEST", and IF (the word isn't always there) that specific word is there, then move the entire row of that cell below the table and create and add to a "Table2", and hereby exclude the "test"-row from Table1.

    If any help, the layout of Table1 is "fixed", and will always start with headers in A7:I7, but the length of the data is variable. Also, there will always be a number in A to the data.

    On the first row below Table1 - and also the first row below the newly created Table2 (if it is created), there must be a SUM([Field 1]), SUM([Field 2]) and SUM([FIELD 3])

    I attached two sheets, one with the basic data and one that looks like it is supposed to, after the VBA :-)

    I know it might sound confusing, so please just ask if anything :-)
    Attached Files Attached Files

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

    Re: Move EntireRow below Table1 if range in table contains specific word

    Would be so much simpler if another sheet was used...But anyway...perhaps someone else can simplify...
    Please Login or Register  to view this content.
    Good Luck...
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
    Also....Add a comment if you like!!!!
    And remember...Mark Thread as Solved...
    Excel Forum Rocks!!!

  3. #3
    Forum Contributor
    Join Date
    04-15-2013
    Location
    Singapore, Melbourne
    MS-Off Ver
    Office 365
    Posts
    167

    Re: Move EntireRow below Table1 if range in table contains specific word

    Please Login or Register  to view this content.
    Row row row your boat
    Gently down the stream

  4. #4
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Cool Hi ! try this demonstration !


    Quote Originally Posted by chriskay View Post
    I am completely clueless on how to do this one (my VBA skills are very limited)…
    As any beginner can start to activate the Macro Recorder and operate manually Excel basics
    then just comparing the generated code with the operations and reading the VBA help, a good way for learning …


    According to your attachment a VBA beginner starter covering both cases and avoiding some issues :

    PHP Code: 
    Sub Demo1()
             
    Dim VR&
        
    With Me.ListObjects
            
    If .Count 0 Then Beep: Exit Sub
            
    If .Item(1).ListRows.Count 0 Then Beep: Exit Sub
            V 
    Me.Evaluate("IF({1},ISNUMBER(SEARCH(""test""," & .Item(1).DataBodyRange.Columns(2).Address ")))")
            If 
    IsError(Application.Match(TrueV0)) Then Beep: Exit Sub
            Application
    .ScreenUpdating False
        
    For 1 To .Count
            
    If .Item(R).AutoFilter.FilterMode Then .Item(R).Range(1).SelectMe.ShowAllData
        Next
        
    If .Count 1 Then
               
    .Item(1).Range.Copy Me.UsedRange.Rows(Me.UsedRange.Rows.Count).Cells(4, .Item(1).Range.Column)
            For 
    UBound(VTo 1 Step -1
                
    If Not V(R1Then .Item(2).ListRows(R).Delete
            Next
        
    Else
               .
    Item(2).ShowTotals False
            
    For 1 To UBound(V)
                If 
    V(R1Then .Item(1).ListRows(R).Range.Copy .Item(2).ListColumns(1).Range(.Item(2).ListRows.Count 2)
            
    Next
               
    .Item(2).ShowTotals True
        End 
    If
        For 
    UBound(VTo 1 Step -1
            
    If V(R1Then .Item(1).ListRows(R).Delete
        Next
            Application
    .ScreenUpdating True
        End With
    End Sub 
    ► Do you like it ? ► So thanks to click on bottom left star icon « Add Reputation » !

  5. #5
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Exclamation


    I forgot to mention : previous post code must be pasted to the Ark1 worksheet module

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

    Re: Move EntireRow below Table1 if range in table contains specific word

    slight simplification...
    Please Login or Register  to view this content.

+ 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. Change vba from move EntireRow to moving 1 cell
    By C_P in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-03-2019, 08:52 AM
  2. [SOLVED] Move ActiveCell.EntireRow to another sheet
    By chriskay in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 10-01-2019, 08:12 AM
  3. [SOLVED] Convert Table1 To Range and Edit Vba With Change
    By fredfarmer in forum Excel Programming / VBA / Macros
    Replies: 16
    Last Post: 03-25-2019, 03:45 PM
  4. If-Then copying specific data from Table1 to Table2 in a specific order
    By b4tmast in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-15-2016, 04:28 AM
  5. Replies: 2
    Last Post: 10-30-2014, 01:49 AM
  6. Move row data to a specific sheet if column contains specific word
    By Kennethc in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-06-2014, 06:55 PM
  7. [SOLVED] Set the specific column range instead of entirerow
    By satputenandkumar0 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-17-2013, 07:45 AM

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