"Concatenar" y dar formato a fecha

gustavomeeuwes

New Member
Joined
Aug 13, 2010
Messages
46
Hola de nuevo !!!

Tengo en una macro:

' Estoy trabajando en la Hoja1
Range("A1").FormulaR1C1 = "Fecha: " & Sheets("Hoja2").Range("A1")

donde Sheets("Hoja2").Range("A1"), es una fecha con formato d-mmm-yyyy, o sea NumberFormat = "[$-C0A]d-mmm-yyyy;@". Supongamos qe el valor de esa celda es: 20-oct-2010

Como resultado en la celda A1 de la Hoja1 obtengo:
Fecha: 20/10/2010

Pregunta:
Hay alguna forma de "forzar" que la fecha la ponga en el formato que tengo en toda la planilla, d-mmm-yyyy
Es decir, que en la celda A1 de la Hoja1 obtenga:
Fecha: 20-oct-2010

Gracias
Saludos
Gustavo
 
Hola Greg:
Gracias por la respuesta.
Funciona OK, aunque en realidad no preciso que se actualice. Una vez ejecutada la macro, que es para presentar un informe, al volver me borra el contenido de la CeldaA1 Hoja2.
Nuevamente gracias por la ayuda.
Cordiales Saludos
Gustavo
 
Upvote 0

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
otra posibilidad:
Code:
with sheet1.range("a1")
    .formular1c1="=sheet2!r1c1"
    .numberformat = """Fecha :"" d-mmm-yyyy"
end with

Asi, siempre se queda como una fecha y no texto y si la fecha en la segunda cambia, también cambia en la primera.

Hi Greg,

Una solución mucho mejor que la mía.

Dudas:
Quando usar FormulaR1C1?

En esta situación era necessario?

Nunca sé cuándo y por qué utilizar R1C1

Saludos

M.
 
Upvote 0
...Quando usar FormulaR1C1?

En esta situación era necessario?

Nunca sé cuándo y por qué utilizar R1C1

Saludos

M.

Marcelo,

En muchos casos le da igual. Pero por lo general cuando estoy contruyendo fórmulas para asignar a un rango de celdas lo que hago es definir las posiciones de las columnas en constantes enumerados al nivel del módulo o a nivel global y en esas circumstancias, sí es más fácil usar notación R1C1.

La razón por la cual hago así es que si después tengo que insertar o suprimir una(s) columna(s) es nada más cuestión de poner al día las definiciones de las constantes de columnas y ya, todos las fórmulas hechos en el módulo se corrigen. También cuando uno necesita hacer referencia a una fila o columa de una variable tipo rango usar R1C1 ayuda hacer la vida más sencilla. Ejemplos:

Sección de Declaraciones en la Cabeza del Módulo
Code:
Private Enum me_ExhCols
    ecExhibitor = 1
    ecTheater
    ecPlayer
    ecDemog
    ecPermut = 4        '// starts as 5th column, but Demograph column gets deleted
    ecNetwork
    ecMatch
End Enum
Dos extractos del mismo módulo
Code:
...
    '// if on the shortlist, will match (return number), if not #N/A
    Let f = "=Match(RC[" & me_ExhCols.ecExhibitor - me_ExhCols.ecMatch & "] & ""|"" & " _
          & "RC[" & me_ExhCols.ecTheater - me_ExhCols.ecMatch & "]," _
          & rngExhibShort.Columns(me_ExhCols.ecExhibitor).Address(True, True, xlR1C1) _
          & " & ""|"" & " _
          & rngExhibShort.Columns(me_ExhCols.ecTheater).Address(True, True, xlR1C1) _
          & ",0)"
...
            '// drop in help columns that fetch back the start and stop times for
            '// the offset splits B thru D
            With rngMatchCol1
                Let f = "=Index(R2C[" & rngTitleList.Column + 1 - .Column & "]:" _
                      & "R" & m_wsPxmlActive.Cells(Rows.Count, rngTitleList.Column).End(xlUp).Row _
                      & "C[" & rngTitleList.Column + 1 - .Column & "]," _
                      & "Match(RC" & rngTemp.Column & "," & gc_strRngNamePXML_Split & "A" & ",0))"
                With .Resize(, 2)
                    .FormulaR1C1 = f
                    .NumberFormat = "h:mm AM/PM;;@"
                    .EntireColumn.Hidden = True
                End With
            End With
...
 
Last edited:
Upvote 0
Greg,

Gracias por su respuesta.

Estoy tratando de entender lo que ha escrito en el post anterior


Enumeraciones al nivel de modulo o global para definir posiciones de columnas...:confused: (yo sé que és solo un ejemplo...)

Espero que lo voy a entender :)

M.
 
Upvote 0
Ok suponemos que tenemos una hoja con datos así en A a C:
<!-- Please do not remove this header --><!-- Table easily created from Excel with ASAP Utilities (http://www.asap-utilities.com) --><table border="1" bordercolor="#C0C0C0" bordercolordark="#FFFFFF" cellspacing="0"><tr><td bgcolor="#000000" width="147" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Número de Artículo</b></font></td><td bgcolor="#000000" width="120" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Precio</b></font></td><td bgcolor="#000000" width="69" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Inventario</b></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">A-1232-456-A</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">45</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">251</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">1-222-333-41</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">18</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">118</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">5-147-198-44</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">11</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">94</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">J-9987-135-X</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">122</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">48</font></td></tr></table>
Y queremos que VBA agregue una columna con el valor del inventario. Tenemos dos opciones, una con usar .FORMULA y otra con usar .FORMULAR1C1. Si estamos convencidos que jamás nadie va a cambiar la estructura de la hoja no importa. Ambas opciones nos da igual.
Code:
Sub InsertarValorInvent_A1()
    Dim rngCurr As Excel.Range, rngTarget As Excel.Range
    '// para ser más sencilla usamos la hoja activa
    Set rngCurr = Range("A1").CurrentRegion
    With rngCurr
        Set rngTarget = .Offset(, .Columns.Count).Resize(1, 1)
        .Range("A1").Copy
    End With
    With rngTarget
        .PasteSpecial xlPasteFormats
        .Value = "Valor Invent"
        Set rngTarget = .Offset(1).Resize(rngCurr.Rows.Count - 1, 1)
    End With
    With rngTarget
        '// using .Formula
        .Formula = "=B2*C2"
        .NumberFormat = "#,000"
        .EntireColumn.ColumnWidth = 16
    End With
End Sub
Sub InsertarValorInvent_R1C1()
    Dim rngCurr As Excel.Range, rngTarget As Excel.Range
    '// para ser más sencilla usamos la hoja activa
    Set rngCurr = Range("A1").CurrentRegion
    With rngCurr
        Set rngTarget = .Offset(, .Columns.Count).Resize(1, 1)
        .Range("A1").Copy
    End With
    With rngTarget
        .PasteSpecial xlPasteFormats
        .Value = "Valor Invent"
        Set rngTarget = .Offset(1).Resize(rngCurr.Rows.Count - 1, 1)
    End With
    With rngTarget
        '// using .FormulaR1C1
        .FormulaR1C1 = "=RC[-2]*RC[-1]"
        .NumberFormat = "#,000"
        .EntireColumn.ColumnWidth = 16
    End With
End Sub
PERO, si en una semana llega el jefe y nos dice «¿mira, ese reporte que automatizó usted la semana pasada? Bueno dije a informática que ponga otra columna. ¿Eso no afectará su macro, verdad que no?» Y la respuesta tiene que ser «depende». Porque si usted usó .FORMULA y puso la columna al final, no hay problema, pero si usted usó .FORMULA e insertaron la columna en B o C entonces sí hay problema. Mientras si usó .FORMULAR1C1 falla si metieron a la derecha pero funciona si metieron a la izquierda o sea:
<!-- Please do not remove this header --><!-- Table easily created from Excel with ASAP Utilities (http://www.asap-utilities.com) --><table border="1" bordercolor="#C0C0C0" bordercolordark="#FFFFFF" cellspacing="0"><tr><td bgcolor="#000000" width="147" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Número de Artículo</b></font></td><td bgcolor="#000000" width="120" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Precio</b></font></td><td bgcolor="#000000" width="69" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Inventario</b></font></td><td bgcolor="#953735" width="116" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Columna Nueva</b></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">A-1232-456-A</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">45</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">251</font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">5</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">1-222-333-41</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">18</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">118</font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">10</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">5-147-198-44</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">11</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">94</font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">15</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">J-9987-135-X</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">122</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">48</font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">20</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr><tr><td bgcolor="#215867" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Base de Solución</b></font></td><td bgcolor="#215867" width="120" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Resultado</b></font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">.FORMULA</font></td><td bgcolor="#FFFFFF" width="120" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">FUNCIONA</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">.FORMULAR1C1</font></td><td bgcolor="#FFFFFF" width="120" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">FALLA</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="116" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr></table>
<!-- Please do not remove this header --><!-- Table easily created from Excel with ASAP Utilities (http://www.asap-utilities.com) --><table border="1" bordercolor="#C0C0C0" bordercolordark="#FFFFFF" cellspacing="0"><tr><td bgcolor="#000000" width="147" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Número de Artículo</b></font></td><td bgcolor="#953735" width="120" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Columna Nueva</b></font></td><td bgcolor="#000000" width="69" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Precio</b></font></td><td bgcolor="#000000" width="104" height="25" align="center" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Inventario</b></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">A-1232-456-A</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">5</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">45</font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">251</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">1-222-333-41</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">10</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">18</font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">118</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">5-147-198-44</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">15</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">11</font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">94</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">J-9987-135-X</font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">20</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">122</font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">48</font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="120" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr><tr><td bgcolor="#215867" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Base de Solución</b></font></td><td bgcolor="#215867" width="120" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#FFFFFF"><b>Resultado</b></font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">.FORMULA</font></td><td bgcolor="#FFFFFF" width="120" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">FALLA</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr><tr><td bgcolor="#FFFFFF" width="147" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">.FORMULAR1C1</font></td><td bgcolor="#FFFFFF" width="120" height="25" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000">FUNCIONA</font></td><td bgcolor="#FFFFFF" width="69" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td><td bgcolor="#FFFFFF" width="104" height="25" align="right" valign="bottom" style="white-space: nowrap"><font face="Tahoma" size="2" color="#000000"></font></td></tr></table>
Entonces ¿qué será una solución que sobrevive ambos? No queremos andar busque que busque cada línea que hace una fórmula si hay centenares o miles de líneas de código. <o:p></o:p>
La solución es hacemos una enumeración de la posición de las columnas y usamos R1C1.<o:p></o:p>
Solución original (tres columnas)
Code:
Private Enum me_Columnas
    colNumeroArticulo = 1   '// by default first item is a 0, so need to redefine
    colPrecio
    colInventario
End Enum
Sub InsertarValorInvent_Enumerated()
    Dim rngCurr As Excel.Range, rngTarget As Excel.Range, _
        f As String, lngTargCol As Long
    '// para ser más sencilla usamos la hoja activa
    Set rngCurr = Range("A1").CurrentRegion
    With rngCurr
        Set rngTarget = .Offset(, .Columns.Count).Resize(1, 1)
        .Range("A1").Copy
    End With
    With rngTarget
        .PasteSpecial xlPasteFormats
        .Value = "Valor Invent"
        Set rngTarget = .Offset(1).Resize(rngCurr.Rows.Count - 1, 1)
    End With
    Let lngTargCol = rngTarget.Column
    Let f = "=RC[" & me_Columnas.colPrecio - lngTargCol _
          & "]*RC[" & me_Columnas.colInventario - lngTargCol & "]"
    With rngTarget
        '// using .FormulaR1C1
        .FormulaR1C1 = f
        .NumberFormat = "#,000"
        .EntireColumn.ColumnWidth = 16
    End With
End Sub
Si meten la nueva en B, editamos las enumeraciones así
Code:
Private Enum me_Columnas
  colNumeroArticulo = 1   '// by default first item is a 0, so need to redefine
  colNueva
  colPrecio
  colInventario
End Enum
Y si la meten en D, editamos así.
Code:
Private Enum me_Columnas
  colNumeroArticulo = 1   '// by default first item is a 0, so need to redefine
  colPrecio
  colInventario
  colNueva
End Enum
En ambos casos solo tenemos que editar las enumeraciones en la cabeza del módulo y ya, finito. No tenemos que editar una sola letra de la rutina que escribe la fórmula.
 
Upvote 0

Forum statistics

Threads
1,223,956
Messages
6,175,607
Members
452,660
Latest member
Zatman

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top