VBA Delete blank rows with a formula but has no value

clazzic

New Member
Joined
May 6, 2013
Messages
26
Hi All,

So my scenario is i have a range e.g. A3: BA1000 that is filled with formulas. the formulas will blank out when there is no value. In all cases all the rows with value will be at the top.
just looking to see if there is a macro that allows me to find all the rows that has no value and delete?

or is there an option where i can just select my range that has a value and not blanks?

thanks in advance
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Turn off screen updating, change calculation to manual, then change back at the end.

Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
 
Upvote 0
Wait a minute you're saying you want to clear the contents of rows that have no contents anyway since they're all blanks?? What is the point?
 
Upvote 0

Forum statistics

Threads
1,223,993
Messages
6,175,835
Members
452,674
Latest member
psion2600

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