+ Reply to Thread
Results 1 to 14 of 14

Can I auto-hide rows or auto-set row height?

  1. #1
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Can I auto-hide rows or auto-set row height?

    I have one worksheet that contains a large table. I'm using VLOOKUP to spread each row of the table to separate worksheets.

    When VLOOKUP refers to an empty cell, is there a way to set that row to be hidden?

    Also, if VLOOKUP returns data to a cell, is there a way for Excel to automatically set the row height to display all of the linked data in that cell?

    Thanks in anticipation!

  2. #2
    Valued Forum Contributor
    Join Date
    12-02-2012
    Location
    Melbourne, VIC
    MS-Off Ver
    Excel 2016
    Posts
    750

    Re: Can I auto-hide rows or auto-set row height?

    This should be possible with VBA. Ensure that Text Wrap is ON for all cells that are to be evaluated.
    Now if VLookUp returns a value, then auto-fit the RowHeight, Else hide the entire row.

  3. #3
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Thanks for that!

    I'm not too familiar with VBA. Perhaps I should post this in the VBA section of the forum.

  4. #4
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Quote Originally Posted by jewelsharma View Post
    This should be possible with VBA. Ensure that Text Wrap is ON for all cells that are to be evaluated.
    Now if VLookUp returns a value, then auto-fit the RowHeight, Else hide the entire row.
    That looks like exactly what I need to do!

    Any help on how to do this with VBA?

    Thanks!

  5. #5
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Any help?

    I am vaguely familiar with VBA as it applies to a worksheet or workbook, but not as it applies to individual cells.

    If a cell's VLOOKUP returns no value, I want to hide that worksheet's row. If it DOES return a value, I want that row's height to be automatically set to accommodate the data.

    Thanks!

  6. #6
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Any help?

    I am vaguely familiar with VBA as it applies to a worksheet or workbook, but not as it applies to individual cells.

    If a cell's VLOOKUP returns no value, I want to hide that worksheet's row. If it DOES return a value, I want that row's height to be automatically set to accommodate the data. There will be multiple cells with this functionality in the worksheet receiving the data.

    Thanks!

  7. #7
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    So this will ensure that every row is tall enough to accommodate the VLOOKUP linked data:

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
    Target.EntireRow.AutoFit
    Target.EntireColumn.AutoFit
    End If
    End Sub

    How can I now hide any row whose VLOOKUP result is blank?

  8. #8
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    So this will ensure that every row is tall enough to accommodate the VLOOKUP linked data:

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A1:A100")) Is Nothing Then
    Target.EntireRow.AutoFit
    End If
    End Sub

    How can I now hide any row whose VLOOKUP result is blank?
    Last edited by Hambone70; 06-29-2014 at 01:01 PM.

  9. #9
    Valued Forum Contributor
    Join Date
    12-02-2012
    Location
    Melbourne, VIC
    MS-Off Ver
    Excel 2016
    Posts
    750

    Re: Can I auto-hide rows or auto-set row height?

    Sorry, I haven't logged in for the past few days.
    You seem to have the first part figured. Now for hiding the row - if VLookUp formula is unable to find a Match, it returns a #N/A error. We can use this information to hide rows as follows:
    Please Login or Register  to view this content.
    HTH.

  10. #10
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Thanks for that. I'll try it at work tomorrow.

    The workbook has almost 100 identical pages using the same concept. Is there a way to not have to put the actual worksheet name in each VBA instance?

    Also, the auto-set row height VBA posted above doesn't work with rows that have merged cells. Any idea why?

    Thanks again!

  11. #11
    Valued Forum Contributor
    Join Date
    12-02-2012
    Location
    Melbourne, VIC
    MS-Off Ver
    Excel 2016
    Posts
    750

    Re: Can I auto-hide rows or auto-set row height?

    For the 1st part, we can run two For loops, one within the other to perform this for all worksheets of a workbook. However, Auto-Fit does not work for Merged cells. If you require to autofit merged cells, a different approach would be required. For this, please share a sample workbook (with maybe just 3-4 sheets, instead of 100 .

  12. #12
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Please find attached two sample workbooks. I'm using HLOOKUP to link data from the Sample Lesson Plans workbook to individual Sample Lesson Plans Shell worksheets. I then copy and link-paste the individual Shell worksheets into a Word document.

    I make the new individual Shell worksheets by duplicating an existing worksheet, and changing the name of the worksheet on the tab. The sheet then HLOOKUP links to the appropriate column of the Sample Lesson Plans worksheet.

    Now, I want to:

    1) Hide any row on any Shell worksheet that doesn’t have corresponding linked data on the Sample Lesson Plans worksheet. The code I have been trying doesn't work when any cells in the row are merged.

    2) Automatically set the row height of cells that DO have linked data high enough to accommodate the linked data.

    Thanks!
    Attached Files Attached Files

  13. #13
    Forum Contributor
    Join Date
    01-16-2011
    Location
    Abu Dhabi, UAE
    MS-Off Ver
    Excel 2010
    Posts
    234

    Re: Can I auto-hide rows or auto-set row height?

    Any reason why Target.EntireRow.AutoFit doesn't work when there are merged cells in the row?

    Is there another technique that will work?

  14. #14
    Valued Forum Contributor
    Join Date
    12-02-2012
    Location
    Melbourne, VIC
    MS-Off Ver
    Excel 2016
    Posts
    750

    Re: Can I auto-hide rows or auto-set row height?

    Your example workbooks are very helpful. Earlier, it wasn't clear that you were using "IF", "&" and such other formulas in addition to the LookUp formulas.
    So here's a possible fix to hide empty rows, or else Auto-fit their row height.
    Please Login or Register  to view this content.
    You might need to tweak the code slightly, but it should be able to perform what you desire.
    Good luck!

+ 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. Auto Hide Rows
    By Faren in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-22-2013, 06:59 AM
  2. Auto Hide rows
    By Rochy81 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-04-2013, 02:35 PM
  3. ListView auto height based on it's content (No. of Rows)
    By ebin charles in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-28-2011, 02:37 AM
  4. Auto hide rows
    By demuro1 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-23-2008, 07:13 PM
  5. Auto height rows
    By Quindos in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-26-2005, 07:05 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