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>
 
Thanks - how do I separate the row? Would it be “C14:C22, F14:F22, I14:F14, C25:C30, F25:F30 and so on?
 
Upvote 0

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Use the Union and Intersect functions. For example, Set Rws = Union(Rows("14:22"),Rows("25:30")). Set R =Intersect(Columns("C"),Rws) is a range that contains two areas: C14:C22 and C25:C30.
 
Upvote 0
Thanks - I have added the line below to cover off all the rows that I need to be hidden if there is a £0 entry. I am planning on repeating this line another twice for the Columns F and I. I am getting an error message saying Compile Error: Expected End of Statement with the R after Set highlighted. Any idea how I solve that?

Set Rws = Union(Rows("14:22"),Rows("25:30"),Rows("33:45"),Rows("48:65"),Rows("73:77"),Rows("80"),Rows("83:87")). Set R =Intersect(Columns("C"),Rws)
 
Upvote 0
Sorry another question. I am on to my final tab and want to hide columns on this one too. I have used the same code as provided previoulsy and updated the range to I10:AB12. When I run the code it hides all the columns which have empty cells in the range, however, there are some cells which have a % and a £0.00 which are being calculated by a formula. Does the code not work with formulas like this or the % and £ formatting applied to the cells?
 
Upvote 0
A cell cannot be empty if it contains a formula. If it is empty you can format it anyway you want and it will remain empty.
 
Upvote 0
Is it possible to change the code so that it hides any empty cells and cells with a value of less than £1 or 1%?
 
Upvote 0
Great worked a treat. Thanks again - hopefully no more questions!!! Getting quite into this coding. Think I’ll buy a book and try and teach myself some more!
 
Upvote 0

Forum statistics

Threads
1,214,956
Messages
6,122,465
Members
449,085
Latest member
ExcelError

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