Macro to blank out filtered columns
Solved/Closed
Related:
- Macro to blank out filtered columns
- Display two columns in data validation list but return only one - Guide
- Spell number in excel without macro - Guide
- Tweetdeck larger columns - Guide
- Excel macro to create new sheet based on value in cells - Guide
- Macro excel download - Download - Spreadsheets
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 7, 2010 at 10:47 AM
Jun 7, 2010 at 10:47 AM
Simple .clear would work
range("M2:M" & rows.count).Clear
This will clear all visible cells in column M. Hidden cells due to filtration are not impacted
range("M2:M" & rows.count).Clear
This will clear all visible cells in column M. Hidden cells due to filtration are not impacted
Jun 7, 2010 at 02:12 PM