Respuesta
en
Microsoft Excel
y en 2 temas más
a
Captura de datos de textbox a celdas con fecha y cantidad de otro textbox
H o l a: Private Sub CMD1_Click() If TextBox15 <> "" Then Set h1 = Sheets("NUCLEOS PRODUCIDOS") j = h1.Range("I" & Rows.Count).End(xlUp).Row + 1 pedazo = 10 For i = 1 To Len(TextBox15) Cells(j, "I") = Mid(TextBox15, i, pedazo) Cells(j, "J") = Date...
Respuesta
en
Microsoft Excel
y en 2 temas más
a
Si en un rango pone como resultado "baja" me salte un mensaje MsgBox.
H o l a: Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("U4:U104")) Is Nothing Then If Target.Count > 1 Then Exit Sub If Target.Row > 1 Then Select Case UCase(Target) Case "BAJA" MsgBox "El trabajador se encuetra...
Respuesta
en
Microsoft Excel
a
Mostrar datos de una celda en un TEXTBOX de otra hoja
H o l a: Esto para realizar la búsqueda Private Sub CODI_Change() Set h = Sheets("BD") Set b = h.Columns("A").Find(CODI) If Not b Is Nothing Then PACI = h.Cells(b.Row, "B") End If End Sub Para que funcione, tienes que capturar la letra en el CODI y...
Respuesta
en
VBA
y en 2 temas más
a
¿Cómo selecciono un rango usando VBA?
H o l a: Te paso la macro Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("B10:B1002")) Is Nothing Then Range("C10:C1002").ClearContents End If End Sub
Respuesta
en
Microsoft Excel
a
Boquear algunas celdas y ocultar fórmulas
Respuesta
en
Microsoft Excel
y en 2 temas más
a
Problemas al copiar la Fecha
H o l a: Aplica esto fecha1 = Mid(TXTFECHA, 4, 2) & "/" & Mid(TXTFECHA, 1, 2) & "/" & Mid(TXTFECHA, 7, 4) Range("A1") = CDate(fecha1)
Respuesta
en
Microsoft Excel
y en 2 temas más
a
Textbox multilínea divida caracteres en celdas y al volver a ingresar datos lo haga en la celda consecutiva
H o l a: Set h1 = Sheets("Hoja1") ' cambia el nombre de la hoja por la tuya u1 = h1.Range("A" & Rows.Count).End(xlUp).Row + 1 h1.Cells(u1, "A") = Textbox1 'guarda datos del textbox1 en la columna A h1.Cells(u1, "B") = Textbox2 ' 'guarda datos del...
Respuesta
en
Microsoft Excel
a
¿Cómo abrir un userform y active un button?
Respuesta
en
Ingeniería Informática
y en 2 temas más
a
¿Cuál es el mejor sistema operativo como servidor de red?
Yo recomendaría el CentOS de linux http://www.comoinstalarlinux.com/como-instalar-centos-linux-como-servidor/
Respuesta
en
VBA
a
Como operar con dos decimales en VBA excel
TextBox25.Text = Format(T_25, "#0.00")