Excel Macro help, hiding columns
Solved/Closed
So I'm trying to figure out an Excel macro that would hide row A-K on every worksheet in a workbook.
Thanks for any help
Thanks for any help
Related:
- Excel Macro help, hiding columns
- Excel mod apk for pc - Download - Spreadsheets
- Spell number in excel without macro - Guide
- Tweetdeck larger columns - Guide
- Gif in excel - Guide
- Kernel for excel - Download - Backup and recovery
2 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jun 14, 2010 at 05:35 PM
Jun 14, 2010 at 05:35 PM
Rows A-K or columns ?
If that is the case then
For Each Sheet in Sheets
Sheet.Columns("A:K").Hidden = True
Next
If that is the case then
For Each Sheet in Sheets
Sheet.Columns("A:K").Hidden = True
Next
Jun 14, 2010 at 06:00 PM