Adriel Ortiz Mangia

Adriel Ortiz Mangia

La vida es hermosa
 252K puntos  Yurimaguas, Perú @temp01 desde - visto
Preguntar

Respuestas en Programación

Respuesta en y en 2 temas más a

Como eliminar mensajes que salen al copiar una hoja en excel

[Hola On Error Resume Next ' Sheets("BalanceB").Copy After:=Sheets(ActiveWorkbook.Sheets.Count) ActiveSheet.Name = Hoja39.Cells(4, 6)
Respuesta en y en 2 temas más a

Boton guardar datos en excel utilizando usefrom

[Hola Va la macro Private Sub Cmdguardar_Click() Set h2 = Sheets("DATOS") ' 'REGISTRO u = h2.Range("B" & Rows.Count).End(xlUp).Row + 1 If u < 8 Then u = 8 ' h2.Cells(u, "B") = Txtidentidad h2.Cells(u, "C") = Txtcaso.Text h2.Cells(u, "D") =...
Respuesta en y en 3 temas más a

Agregar caracter y que no me modifique algún dato

[Hola Prueba la siguiente macro y me comentas Sub AOM() 'Por Adriel ' u = Range("A" & Rows.Count).End(xlUp).Row ' For i = 2 To u dato = Cells(i, "A") If Cells(i, "B") = "" Then If InStr(dato, "S") > 0 Then num = Right(dato, Len(dato) - 1) If Len(num)...
Respuesta en y en 2 temas más a

Cambio de valores en celda

[Hola Prueba con la siguiente macro Sub CONT() 'Por Adriel ' u = Range("A" & Rows.Count).End(xlUp).Row ' For i = 2 To u dato = Cells(i, "A") If InStr(dato, "OPS") > 0 Then num = Right(dato, Len(dato) - 3) Cells(i, "B") = "S" & num ElseIf InStr(dato,...
Respuesta en y en 2 temas más a

Macro que realice varias tareas

[Te paso la macro Sub Prueba() 'Adriel With Range("B2:B" & Range("A" & Rows.Count).End(xlUp).Row) .FormulaR1C1 = "=IF(RC[-1]=RC[3],RC[3],"""")" .Value = .Value End With End Sub
Respuesta en y en 2 temas más a

Comparar dos columnas y poner el resultado en otra

[Hola Te paso la macro Sub Prueba() 'Adriel With Range("B2:B" & Range("A" & Rows.Count).End(xlUp).Row) .FormulaR1C1 = "=IF(RC[-1]=RC[1],RC[-1],"""")" .Value = .Value End With End Sub
Respuesta en y en 2 temas más a

Macro para insertar en diferentes celdas una letra con condiciones

[Hola Te paso la macro Sub agrega_letra() '_Adriel Ortiz Application.ScreenUpdating = False ' u = Range("A" & Rows.Count).End(xlUp).Row suf = "S" ' For i = 2 To u cant = Len(Cells(i, 1)) If IsNumeric(Cells(i, 1)) And cant = 6 Then Cells(i, 1) = suf &...
Respuesta en y en 2 temas más a

Quiero que mi macro busque celdas con algunos valores.

[Hola Como tienes tus datos en la columna B, una letra o son varias letras por celda
Respuesta en y en 2 temas más a

Macro que Cierre el Archivo a los 5 Minutos de abrirse

[Hola revisa esto http://trucosycursos.es/guardar-y-cerrar-un-libro-excel-transcurrido-un-tiempo-de-inactividad/