Hiding Blank Rows In Excel

ExcelBeginner34

New Member
Joined
Mar 2, 2019
Messages
41
Office Version
  1. 2016
Platform
  1. Windows
Hi, first time poster and as you can tell from my username a bit of a novice. Hoping to get some help with a project I am working on. I have created a table as a template to be used by my colleagues. This will be the base template for them to input data for various different commercial properties that we manage. The table effectively shows costs for the running of the building under various headings security, cleaning, electricity etc. There are then 10 columns (D - M) in which the user can enter costs. These are then totalled in the 11th column (N). The data that I want to be able to work with is in D9:79 through to M79.

Due to the fact every property is different there may be times when one cost heading e.g cleaning might have no entries at all. There may also be times when there will be a figure in only one of the cells in a row. It is only the rows with no cells filled at all that I want to hide. If possible I want to have two options:

1) a macro to show all the potential input cells
2) a macro to use once the user has input the data they need and wants to hide all the rows with no contents to print a report for a client.

I also want to have the ability for someone, once they have run the macro to hide the empty cells, to revert back to being able to see all the potential input cells in case they make a mistake and want to correct this. I have shown below an example of what to try and help explain. So in this example, once the data was input I would only want to hide the management fee row. But then if I realised that there should actually have been a figure in say Sch10 I would want to run something to unhide this row, allow me to enter it and then run the macro again to hide any other blank rows in the bigger table.

Any help would be great and I hope the above explanation makes sense!!


CDEFGHIJKLMN
Cost CodeSch1Sch2Sch3Sch4Sch5Sch6Sch7Sch8Sch9Sch10Total Cost
Management Fee£0
Cleaning£1000£1000£1000£1000£1000£1000£1000£1000£1000£1000£10000
Security£500£1000£1000£4000£6500
Electricity£10000£10000
Gas£1000£1000£1000£1000£1000£5000

<tbody>
</tbody>
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Not sure I understand what you mean by "show all potential input cells", but here's a hide macro and an unhide macro you can try.
Code:
Sub HideEmptyDataRows()
Dim R As Range, Rw As Range
Set R = Intersect(ActiveSheet.UsedRange, ActiveSheet.Range("D9:M79"))
Application.ScreenUpdating = False
For Each Rw In R.Rows
    If Application.CountA(Rw) = 0 Then Rw.EntireRow.Hidden = True
Next Rw
Application.ScreenUpdating = True
End Sub
Sub UnhideEmtyDataRows()
Dim R As Range, Rw As Range
Set R = Intersect(ActiveSheet.UsedRange, ActiveSheet.Range("D9:M79"))
Application.ScreenUpdating = False
For Each Rw In R.Rows
    If Rw.EntireRow.Hidden = True Then Rw.EntireRow.Hidden = False
Next Rw
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Thanks Joe, sorry by this I just mean to show the various cells that they can input the costs so the cells in columns D to M.

I have copied and pasted the code above into the VB. When I run the hide HideEmptyDataRows macro I am getting an error "Run-time error '1004': Unable to set the Hidden property of the Range class. When I hit debug the following is highlighted in yellow

Rw.EntireRow.Hidden = True

Any thoughts on what might be the problem or how I fix this so it runs?

Best regards

Iain
 
Upvote 0
Is the sheet your data are on the active sheet when you run the code?
Is the sheet your data are on protected?
When you get the error click Debug, then ctrl+g, then in the Immediate Window type: ?Rw.Address and press enter. What do you get?
 
Upvote 0
Hi Joe,

The sheet was protected. I've run it again now and it's working perfectly. Thanks for your help.

Iain
 
Upvote 0
Hi Joe,

The sheet was protected. I've run it again now and it's working perfectly. Thanks for your help.

Iain
You are welcome - thanks for the reply. Here's a modification that will do what you want w/o you having to unprotect the sheet first. Substitute your password where my name is shown in bold red font.
Rich (BB code):
Sub HideEmptyDataRows()
Dim R As Range, Rw As Range
ActiveSheet.Protect "joe", userinterfaceonly:=True
Set R = Intersect(ActiveSheet.UsedRange, ActiveSheet.Range("D9:M79"))
Application.ScreenUpdating = False
For Each Rw In R.Rows
    If Application.CountA(Rw) = 0 Then Rw.EntireRow.Hidden = True
Next Rw
Application.ScreenUpdating = True
End Sub
Sub UnhideEmtyDataRows()
Dim R As Range, Rw As Range
ActiveSheet.Protect "joe", userinterfaceonly:=True
Set R = Intersect(ActiveSheet.UsedRange, ActiveSheet.Range("D9:M79"))
Application.ScreenUpdating = False
For Each Rw In R.Rows
    If Rw.EntireRow.Hidden = True Then Rw.EntireRow.Hidden = False
Next Rw
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Sorry Joe, just realised there isn't actually a password on it. I just clock unprotect and then click ok. How would that change the code?
 
Upvote 0
Also - is there a way you can get it to do the same hiding exercise but for any fully empty columns?
 
Upvote 0
Sorry Joe, just realised there isn't actually a password on it. I just clock unprotect and then click ok. How would that change the code?
Remove the password to just leave the two quote marks with no space between them like this:
Code:
ActiveSheet.Protect "", userinterfaceonly:=True
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,715
Members
448,985
Latest member
chocbudda

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top