RegApreciaciones_03170400_B02014T10902_9214

5
C0 C1 C2 C3 C4 C5 C6 C7 C8 DATOS GENERALES : Institución Educativa : Codigo Modular - Anexo 0317040-0 Nivel : Primaria Nombre : ISABEL LA CATOLICA Datos referentes al Registro de Apreciaciones : Año Academico : 2014 Periodo : PRIMER TRIMESTRE Grado : SEXTO Sección : Tutor: CHOQUE CAMARENA, AIDA VILMA

description

yjhjt

Transcript of RegApreciaciones_03170400_B02014T10902_9214

GeneralidadesC0C1C2C3C4C5C6C7C8C9DATOS GENERALES :Institucin Educativa :Recomendaciones :Codigo Modular - Anexo :0317040-0Nivel :PrimariaAl abrir el archivo Excel, se ejecutar por unica vez la macro prelaboradaNombre :ISABEL LA CATOLICApara formateo de columnas en las pestaas (Areas) del libro Excel.Datos referentes al Registro de Apreciaciones :Por lo que se requerir :Ao Academico :20141.-Establecer el nivel de seguridad de ejecucin de macros en medio bajoPeriodo :PRIMER TRIMESTREGrado :SEXTOSeccin :B(Office 2003 : Herramientas -> Macros -> Seguridad )Tutor:CHOQUE CAMARENA, AIDA VILMA(Office 2007 : Programador -> Seguridad de Macros -> Configurar Macros)2.-Luego Grabar y volver a cargar el archivo Excel para que se ejecuteautomticamente o en su defecto correr la macro manualmentepulsando las teclas CTRL+f (en minuscula).

EstudiantesNro OrdenIDApellidos y NombresCodigo EstudianteApreciacin11038733AGUILAR AMAYA, ADRIANA NICOLE714911820034025429498AGUILAR NAVARRO, NIURKA ARLETTE703157130113033617552ALDAVE ALAYO, JAIRO ALEXANDER603352810098041040296BALBIN MATO, MELANIE CECILIA903203740003151977776CURASMA CASTRO, XIOMARA BRIGUITTE7054039301090610124932DIAZ MOSTACERO, PAOLO CESAR6043547900070717791048DIAZ PRINCIPE, GUSTAVO704002700772081073507ENCALADA HENOSTROZA, LESSLIE MALENA60152003000409870666FERNANDEZ RISSO, ARAMIS GABRIEL7149118200760101077852GUERRERO RODRIGUEZ, DAYANNA BRIGITTE614911820010111871773GUZMAN LA BENITA, LUIS ANGEL ALEJANDRO5086385200650121078808HUAYTALLA COJAL, KRISTOFHER JEFFRY7149118200420133869835LEON TUEROS, YASMIN ELIZABETH6086397701040141079434LUCAS MARROQUIN, JOS LUIS5078220100260151126022MORENO VERGARAY, GINA MEDALI70540096006801617188862MORILLO GOMEZ, JOEL FRANCISCO50315507002301716673139NARVAEZ MOSCOSO, ROLANDO BENJAMIN CRISANTO9031861800030181126632PALOMINO PAREDES, KARIN ENITH7149118200500191128065PANCORBO ALAN, LUCERO CELESTE6031571300390201223307POMALIA UCEDA, ANAMILLE DANUSKA61491182002112113285758QUESADA OCHOA, NORELYS YURICO81475870000902216671932QUISPE ASCARATE, SAORY MILAGROS8031571303150231253397RABANAL HINOSTROZA, ANTONIO DAVID71033265001202412501197SALAZAR MALLQUI, ELITA ROSA9031710701540251255332SEGUIL MACHCO, ELIUTH DAVID6149118200260265320524SORIA LEANDRO, NICOLE CORAYMA6066525700820271257481TASAYCO ZEVALLOS, DENISSE GIANELLA6149118200290281293495YUPAN DELGADO, MARIA GRACIA9086448800040291294883ZAMBRANO MENDOZA, YHAMILLE KATHERINE6078220100400

Attribute VB_Name = "Mdulo1"

Private Sub Auto_Open() FormateoEnd Sub

Sub Formateo()Attribute Formateo.VB_Description = "Macro grabada el 24/08/2010 por MED"Attribute Formateo.VB_ProcData.VB_Invoke_Func = "f\n14"'' Formateo Macro' Macro grabada el 24/08/2010 por MED'' Acceso directo: CTRL+f'

For i = 1 To ActiveWorkbook.Sheets.Count 'Extraer numero de hojas Set HojaActiva = ActiveWorkbook.Sheets(i) 'Hoja sobre la que se aplicara el formato If HojaActiva.Name "Generalidades" Then HojaActiva.Activate Range("A1").Select Range(Selection, Selection.End(xlToRight)).Select With Selection.Interior .ColorIndex = 15 .Pattern = xlSolid End With Selection.Borders(xlDiagonalDown).LineStyle = xlNone Selection.Borders(xlDiagonalUp).LineStyle = xlNone With Selection.Borders(xlEdgeLeft) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeTop) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeBottom) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlEdgeRight) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With With Selection.Borders(xlInsideVertical) .LineStyle = xlContinuous .Weight = xlThin .ColorIndex = xlAutomatic End With 'With Selection.Borders(xlInsideHorizontal) ' .LineStyle = xlContinuous ' .Weight = xlThin ' .ColorIndex = xlAutomatic 'End With Rows("1:1").RowHeight = 24.75 Columns("B:B").ColumnWidth = 17.71 Columns("C:C").ColumnWidth = 45 Range("A1").Select End If Next ActiveWorkbook.Sheets("Generalidades").SelectEnd Sub

Attribute VB_Name = "Hoja1"Attribute VB_Base = "0{00020820-0000-0000-C000-000000000046}"Attribute VB_GlobalNameSpace = FalseAttribute VB_Creatable = FalseAttribute VB_PredeclaredId = TrueAttribute VB_Exposed = TrueAttribute VB_TemplateDerived = FalseAttribute VB_Customizable = True

Attribute VB_Name = "ThisWorkbook"Attribute VB_Base = "0{00020819-0000-0000-C000-000000000046}"Attribute VB_GlobalNameSpace = FalseAttribute VB_Creatable = FalseAttribute VB_PredeclaredId = TrueAttribute VB_Exposed = TrueAttribute VB_TemplateDerived = FalseAttribute VB_Customizable = True