Automated Row Deletion

Askeau

New Member
Joined
Mar 9, 2023
Messages
3
Office Version
  1. 365
Platform
  1. Windows
So, I've noticed reading through these forums that there appears to be a lot more functionality available through VB features and items I didn't even know Excel had the capability to complete.

I'm hoping someone can point me in the right direction to learn more about the features in general as I'm looking to add some functionality that I don't believe Excel supports in its base format.

In this instance, I'm looking to automate a search of a specific column and delete columns that don't start with a numeric value or the word Total/Totals. I'm also looking to see if I can automate hiding of rows that don't start with a numeric value. While I want to keep the "Totals" lines, I'm looking to have them hidden in the end, but they contain information I need for formatting other sections of the report I'm preparing.

1678805012278.png



If someone can point me in the right direction and potentially assist in designing something that would help me out, it would be greatly appreciated.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi,

In my opinion, the easiest is to add a column to hold following formula:
Excel Formula:
=IF(ISERR(LEFT(A2,1)*1),"Letter","Number")
Then with AutoFiler is becomes very easy to delete all rows with Letter ...

Hope this will help
 
Upvote 0

Forum statistics

Threads
1,215,754
Messages
6,126,679
Members
449,328
Latest member
easperhe29

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