Necesito ayuda con esta macro
quisiera por favor me ayudaran en cuanto a que cuando ejecuto esta macro me sombrea en amarillo la linea que he colocado en negrita y he subrayado, la función de la macro es ocultar pestañas en el libro de excel
Sub ocultar_pestanas()
'ORDEN PARA ESCONDER LAS PESTAÑAS DE LAS HOJAS QUE NO ESTÁN EN USO
Dim M As Long
Dim L As Long
Application.ScreenUpdating = False
Num_Partidas = Hoja1.Cells(20, 9).Value
ActiveWorkbook.Unprotect ("151152")
For M = 1 To Sheets.Count
Sheets(M).Visible = True
Next
For L = Num_Partidas + 4 To Sheets.Count
Sheets(L).Visible = False
Next
Num_Partidas = Hoja1.Cells(20, 9).Value
'' ESTA OPERACIÓN COLOCARA EL VALOR 1, EN HOJAS PRESUPUESTO Y RENDIMIENTOS '' A LAS FILAS QUE SERÁN Y NO TOMADAS EN CUENTA PARA LA SUMA
Sheets(2).Select
ActiveSheet.Unprotect password:="151152"
For j = 1 To Num_Partidas
Hoja2.Cells(j + 13, 1).Value = 1
Next
For i = Num_Partidas + 1 To 500
Hoja2.Cells(i + 13, 1).Value = 0
Next
ActiveSheet.Protect password:="151152", DrawingObjects:=True, Contents:=True, Scenarios:=True _ , AllowFormattingColumns:=True, AllowFormattingRows:=True
'For j = 4 To Num_Partidas + 3 'Sheets(j).Cells(1, 1).Value = j - 3
'Next j
Sheets(1).Select
ActiveWorkbook.Protect Structure:=True, Windows:=False, password:="151152" Application.ScreenUpdating = True
End Sub
Muchas gracias de antemano
Rafaelmvt