Macros > Error 1004 al agregar comentarios a celdas
Tengo un archivo de excel en el cual contiene botones para ocultar y aparecer filas; sin embargo si agrego comentarios a alguna de las celdas me aparece el siguiente error: "Run-Time error '1004': unable to set the hidden property of the ranges class"
Este error solo me aparece si le agrego comentarios a alguna de las celdas; si remueve el comentario la macro vuelve a funcionar correctamente; ¿Saben a que se debe?
Dejo el codigo por si es necesario:
Sub Rollup()
Rows("5:15").EntireRow.Hidden = False
Rows("16:17").EntireRow.Hidden = True
Rows("18:19").EntireRow.Hidden = False
Rows("20:23").EntireRow.Hidden = True
Rows("24:25").EntireRow.Hidden = False
Rows("26:27").EntireRow.Hidden = True
Rows("28:29").EntireRow.Hidden = False
Rows("30:35").EntireRow.Hidden = True
Rows("36:40").EntireRow.Hidden = False
Rows("41:87").EntireRow.Hidden = True
Rows("88:91").EntireRow.Hidden = False
Rows("92:100").EntireRow.Hidden = True
Rows("101:102").EntireRow.Hidden = False
Rows("103:108").EntireRow.Hidden = True
Rows("109:112").EntireRow.Hidden = False
Rows("113:149").EntireRow.Hidden = True
Rows("150").EntireRow.Hidden = False
Rows("151:1048576").EntireRow.Hidden = True
End Sub
Sub All()
Rows("5:150").EntireRow.Hidden = False
Rows("16:17").EntireRow.Hidden = True
Rows("94:100").EntireRow.Hidden = True
Rows("151:1048576").EntireRow.Hidden = True
End Sub
Sub Operation()
Rows("5:15").EntireRow.Hidden = False
Rows("16:17").EntireRow.Hidden = True
Rows("18:19").EntireRow.Hidden = False
Rows("20:23").EntireRow.Hidden = True
Rows("24:53").EntireRow.Hidden = False
Rows("54:87").EntireRow.Hidden = True
Rows("88:93").EntireRow.Hidden = False
Rows("94:102").EntireRow.Hidden = True
Rows("103:106").EntireRow.Hidden = True
Rows("107:125").EntireRow.Hidden = False
Rows("126:129").EntireRow.Hidden = True
Rows("130:133").EntireRow.Hidden = False
Rows("134:139").EntireRow.Hidden = True
Rows("140:143").EntireRow.Hidden = False
Rows("144:149").EntireRow.Hidden = True
Rows("150").EntireRow.Hidden = False
Rows("151:1048576").EntireRow.Hidden = True
End Sub