+ Reply to Thread
Results 1 to 22 of 22

find and then high lite row under find

  1. #1
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    find and then high lite row under find

    good morning, i am trying to do the following:

    My Excel file has over 3000 total rows, in that file i have a row called "owner" and under that row is a row with peoples full name. i would like to select all the rows under the "owner" row. i don't need the owner row selected only the name row to copy to a new column.
    is this possible?

    Thanks in advance

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    So, do you mean that you want to copy cells A2, A4, A6 etc. into a different column (e.g. C) with no gaps, so those cells appear in C1, C2, C3 and so on?

    Pete

  3. #3
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    Yep. that's what i want

  4. #4
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Okay, you can put this formula in C1:

    =INDEX(A:A,ROWS($1:1)*2)

    then copy down as far as you need to.

    Hope this helps.

    Pete

  5. #5
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    This does not seem to be working.

    it is only putting one entry of "owner" in C1
    i don't see any of the other rows in column C

  6. #6
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Check out the attached file.

    Hope this helps.

    Pete
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    OK, maybe its not working on my end because my file is not like yours, my file sample is following:

    Owner:
    Charles Arthur
    Address:
    123 Main,
    anywhere, AL 10133
    Phone:
    (123) 456- 7890
    Email:
    [email protected]
    Owner:
    David stock
    Address:
    222 Oak St.
    Salty river, IA 54332
    Phone:
    (222) 345-2345
    Email:
    [email protected]

  8. #8
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    I can't tell from that if the name and address is in one cell or in several cells, so it would help if you attached a sample Excel workbook.

    To do this, click on Go Advanced (below the Edit Window) while you are composing a reply, then scroll down to and click on Manage Attachments and the Upload window will open. Click on Browse and navigate to (and double-click) the file icon that you want to attach, then click on Upload and Close this Window to return to the Edit window. When you have finished composing your post, click on Submit Post.

    Pete

  9. #9
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    ok, file attached. its a small sample of the file
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    I guess i should of said that i am really after is to convert all the data in column A into separate columns. i thought i could figure it out but i cant.

  11. #11
    Forum Contributor
    Join Date
    07-07-2013
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    256

    Re: find and then high lite row under find

    hai i have a clarification
    do you want the details below each owner to come in separate columns
    or in the same column without that owner...

  12. #12
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Will you always have 9 rows covering a cell containing "Owner:" and the last line of the address (as in your example), or is the length of the address variable?

    Do you just want to bring across the name, i.e. from the cell immediately below one containing "Owner:"?

    Pete

  13. #13
    Forum Contributor
    Join Date
    07-07-2013
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    256

    Re: find and then high lite row under find

    hai see whether it helps
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    Pete, i think some of the rows may have more than 9 rows.
    Yes, I would like the details below each "owner"to come in separate columns

  15. #15
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Ah, right - I've just seen your clarifications in Post #10 and Post #14. It is a bit more difficult with a variable number of rows for each record, and I can only work with what you have supplied, so you can put the value 1 in cell B1 and this formula in B2:

    =IF(A2="Owner:",MAX(B$1:B1)+1,"-")

    and copy down to the bottom of your data.

    Then you can put headings in cells D1:H1 and these formulae in the cells stated:

    D2: =IFERROR(INDEX($A:$A,MATCH(ROWS($1:1),$B:$B,0)+COLUMNS($B:B)),"")

    E2: =IFERROR(INDEX($A:$A,MATCH(ROWS($1:1),$B:$B,0)+COLUMNS($B:D)),"")

    F2: =IFERROR(INDEX($A:$A,MATCH(ROWS($1:1),$B:$B,0)+COLUMNS($B:E)),"")

    G2: =IFERROR(""&INDEX($A:$A,MATCH(ROWS($1:1),$B:$B,0)+COLUMNS($B:G)),"")

    H2: =IFERROR(INDEX($A:$A,MATCH(ROWS($1:1),$B:$B,0)+COLUMNS($B:I)),"")

    Then you can copy these down as far as you need to, as can be seen in the attached file.

    Hope this helps.

    Pete
    Attached Files Attached Files

  16. #16
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    Pete, i just checked my RAW file and they are all spaced 9 rows apart. does that help?

  17. #17
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Yes, the solution I gave you in Post #15 should work directly with that data - it's probably easier for you to just copy/paste your column A data into column A of my file, then copy the formulae down as far as required.

    Hope this helps.

    Pete

  18. #18
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    Pete, you are the man. that works perfect.

    Thanks Mate!!!!

  19. #19
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Well, that's good to hear - glad you got it working.

    If that takes care of your original question, please take a moment to select Thread Tools from the menu above your first post and mark this thread as SOLVED.

    Also, since you are relatively new to the forum, you might like to know that you can directly thank those who have helped you by clicking on the small "star" icon located in the lower left corner of a post that you have found to be helpful (not just in this thread - for any post that has helped you). This also adds to the reputation of the poster (the small green bars in the poster's profile).

    Pete

  20. #20
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    One more thing Pete. How do I copy and past the information from the new columns created into a new XLS file?

  21. #21
    Registered User
    Join Date
    11-23-2016
    Location
    USA
    MS-Off Ver
    2016
    Posts
    13

    Re: find and then high lite row under find

    OK i got it.

    I did a "Paste Values" only


  22. #22
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,731

    Re: find and then high lite row under find

    Great to hear.

    Pete

+ 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. [SOLVED] how to find a sheet when you have a high number of sheets
    By Mukapa in forum Excel General
    Replies: 2
    Last Post: 05-09-2016, 03:11 AM
  2. [SOLVED] Sort and high lite
    By justme1052 in forum Excel General
    Replies: 12
    Last Post: 08-24-2014, 08:21 PM
  3. how to find the missed value between high and low values
    By selvanraj in forum Excel General
    Replies: 3
    Last Post: 04-12-2014, 11:24 PM
  4. To find Weekly High and Low for the company
    By goodboy in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-11-2014, 12:18 PM
  5. Some cells will not high lite
    By Larbec in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 04-02-2013, 12:12 AM
  6. Replies: 3
    Last Post: 01-27-2006, 06:30 PM
  7. Find High Score
    By Lee in forum Excel General
    Replies: 0
    Last Post: 04-16-2005, 02:06 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