Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
How do I make the following macro run for all sheets in my workbook? I tried selecting all sheets, but it dosen't work. THanks. Sub frmt() Dim cell As Range Application.ScreenUpdating = False With ActiveSheet.UsedRange ActiveSheet.Name = Range("e61").Value End With With ActiveSheet.UsedRange .Rows.Hidden = False For Each cell In .Columns("h").SpecialCells(xlCellTypeFormulas) If cell.Text = "dlt" Then cell.EntireRow.Hidden = True Next cell End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to update data from multiple sheets to one specific sheets | Excel Discussion (Misc queries) | |||
SUMPRODUCT, SUMIF, COUNTIF for multiple sheets for multiple criter | Excel Worksheet Functions | |||
Automated multiple text files into multiple sheets in one workbook | Excel Discussion (Misc queries) | |||
Multiple Sheets (Need to create 500 individual sheets in one workbook, pulling DATA | Excel Worksheet Functions | |||
Changing the value in multiple sheets without selecting those sheets | Excel Programming |