+ Reply to Thread
Results 1 to 9 of 9

Keep Only 3 Rows of Each Name

Hybrid View

  1. #1
    Registered User
    Join Date
    10-27-2012
    Location
    Los Angeles
    MS-Off Ver
    Excel 2010
    Posts
    49

    Keep Only 3 Rows of Each Name

    Hi All,

    I have a pretty basic question. I am just trying to keep 3 rows of each name within a specific column. I'm not sure how to best describe it but I have attached a copy of a document of what I was trying to accomplish. Any and all help would be greatly appreciated!

    Thanks!

    Sean

    Question.xlsx

  2. #2
    Forum Expert NeedForExcel's Avatar
    Join Date
    03-16-2013
    Location
    Pune, India
    MS-Off Ver
    Excel 2016:2019, MS 365
    Posts
    3,879

    Re: Keep Only 3 Rows of Each Name

    Are you OK with VBA?
    Cheers!
    Deep Dave

  3. #3
    Registered User
    Join Date
    10-27-2012
    Location
    Los Angeles
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Keep Only 3 Rows of Each Name

    Of course!

  4. #4
    Forum Expert NeedForExcel's Avatar
    Join Date
    03-16-2013
    Location
    Pune, India
    MS-Off Ver
    Excel 2016:2019, MS 365
    Posts
    3,879

    Re: Keep Only 3 Rows of Each Name

    First see the file attached.

    If that does not help, Ill give you a solution using VBA

    Deep
    Attached Files Attached Files

  5. #5
    Forum Expert NeedForExcel's Avatar
    Join Date
    03-16-2013
    Location
    Pune, India
    MS-Off Ver
    Excel 2016:2019, MS 365
    Posts
    3,879

    Re: Keep Only 3 Rows of Each Name

    I have used a helper column. I generally prefer using helper columns to problems like these rather than using complex formulas or VBA.

    However its upto you, let me know whats needed.

    Deep

  6. #6
    Registered User
    Join Date
    10-27-2012
    Location
    Los Angeles
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Keep Only 3 Rows of Each Name

    Thanks for looking into this! VBA would be ideal if possible?

  7. #7
    Registered User
    Join Date
    10-27-2012
    Location
    Los Angeles
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Keep Only 3 Rows of Each Name

    I made a little bit of progress. I was able to find 3 of the rows but I still cant copy the full row:

    Sub FindWord()
    Dim found As Range
    Set found = Range("B:B").Find(What:="NAME1", LookIn:=xlValues, LookAt:=xlPart)
    If Not found Is Nothing Then found.Resize(3).Copy Destination:=Range("J2")

    Set found = Range("B:B").Find(What:="NAME2", LookIn:=xlValues, LookAt:=xlPart)
    If Not found Is Nothing Then found.Resize(3).Copy Destination:=Range("J5")
    End Sub

  8. #8
    Forum Expert NeedForExcel's Avatar
    Join Date
    03-16-2013
    Location
    Pune, India
    MS-Off Ver
    Excel 2016:2019, MS 365
    Posts
    3,879

    Re: Keep Only 3 Rows of Each Name

    Please see the file attached.

    Hope this helps.

    I am sorry for the delay.

    I'D still suggest to avoid VBA

    Deep
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    10-27-2012
    Location
    Los Angeles
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Keep Only 3 Rows of Each Name

    Thank you sir!

+ 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. Merge Duplicate Rows unique values into single rows for an infinite amount of columns/rows
    By aimeecrystalaid in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-21-2013, 08:43 PM
  2. [SOLVED] Delete blank rows between data rows, shift rows up, then repeat
    By excelactuary in forum Excel General
    Replies: 2
    Last Post: 03-11-2013, 11:53 AM
  3. Replies: 6
    Last Post: 03-04-2013, 12:03 AM
  4. Replies: 5
    Last Post: 11-12-2012, 08:38 PM
  5. Replies: 6
    Last Post: 08-18-2012, 05:00 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