I have a sample sheet with about 1500 clients on the left and information and information across. However, on one of the columns it shows a list of all the subsidiaries of the client. Its the only column with multiple rows of information pertaining to the client. This column is increasing my list to over 18,000 rows. This information is necessary but I want it hidden so it only appears if someone clicks or something similar. See attachment. I would basically want to "hide" E2-16, making the information appear for example if someone clicks E1.
Please advise! If you have a better way to organize the information that would be great as well!
Sample Sheet.xls
Thanks in advance.
hi Samik and welcome!
increase the first row and add two buttons, one hides yr rows and the other one unhide'em.
hope it helps you.
Sub Button1_Click() Dim Rng As Range Set Rng = Range("A:A") Rng.SpecialCells(xlBlanks).EntireRow.Hidden = True 'hide yr rows End Sub Sub Button2_Click() Dim Rng As Range Set Rng = Range("A:A") Rng.SpecialCells(xlBlanks).EntireRow.Hidden = 0 'unhide yr rows End Sub
Regards, John
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks