I need help creating a code that does this below function but runs for all sheets in a workbook. I do not want to choose by selecting names for each sheet, it needs to run regardless of sheet names.
Range("F9").Select
With ActiveWindow
.SplitColumn = 0
.SplitRow = 0
End With
ActiveWindow.FreezePanes = True
I also need help writing a code to go along with the above; it needs to end all sheets at the last colum that has data. There are hidden blank columns after the last column with data. (i.e. I have sheets that end at different columns, I need it to show the last column on each sheet instead of the first column.)
Any help is greatly appreciated.
Range("F9").Select
With ActiveWindow
.SplitColumn = 0
.SplitRow = 0
End With
ActiveWindow.FreezePanes = True
I also need help writing a code to go along with the above; it needs to end all sheets at the last colum that has data. There are hidden blank columns after the last column with data. (i.e. I have sheets that end at different columns, I need it to show the last column on each sheet instead of the first column.)
Any help is greatly appreciated.