Insertar filas y copiar formato

Anala

New Member
Joined
Dec 1, 2003
Messages
5
Hola a todos!!!!

Soy bastante nueva en lo que se refiere a VBA y macros en excel, asi que espero que me puedan ayudar con esto....
Resulta que tengo dos hojas en excel, una en donde ingreso ciertos datos(nombre y descripciones de productos) en varias tablas ordenadas hacia abajo y la otra en la que se me copian estos datos en tablas y luego mediante la formula Vlookup busca precios en una base de datos. Lo que quiero hacer es insertar un boton en la primera hoja y cuando le doy clik inserte una fila al final de la tabla (con las mismas formulas de la fila anterior) y que esto mismo pase en la segunda hoja. La idea es que cuando la presona necesite ingresar mas productos y no tenga espacio en la tabla, pueda insertar cuantas filas sean necesarias.

Llevo bastante tiempo tratando de solucionar esto, mis conocimientos no dan para tanto....espero me puedan ayudar.

Saludos...Anala

:-P
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
¡Bienvenido a MrExcel! ¿Le comprendo bien? ¿Están sus hojas organizadas como así?

Hoja1

Tabla 1
Nombre1 Descripción1
Nombre2 Descripción2
Nombre3 Descripción3
Nombre4 Descripción4
Nombre5 Descripción5

Tabla 2
Nombre1 Descripción1
Nombre2 Descripción2

Tabla 3
Nombre1 Descripción1
Nombre2 Descripción2
Nombre3 Descripción3

Hoja2

Tabla 1
Nombre1 Precio1
Nombre2 Precio2
Nombre3 Precio3
Nombre4 Precio4
Nombre5 Precio5

Tabla 2
Nombre1 Precio1
Nombre2 Precio2

Tabla 3
Nombre1 Precio1
Nombre2 Precio2
Nombre3 Precio3
 
Upvote 0
Hola Greg...gracias por la bienvenida.

Exactamente así están organizadas mis hojas, lo que necesito entonces es incluir un boton al final de cada tabla para dar la opción de agregar una fila al final de la tabla en caso de que el usuario necesite ingresar mas productos. A su vez esto mismo debe pasar en la tabla de la segunda hoja.

Espero me puedas ayudar....gracias y saludos

Anala

:help:
 
Upvote 0
Anala,

Discuple haber tardado tanto en responder. Quisiera saber ¿Por qué tiene los precios en otra hoja? ¿Habrá algo malo en tenerlos en la misma hoja que las descripciones? Le pregunto porque quisiera proponerle una idea que mantendría estas en la misma hoja pero daría el usuario la habilidad de facilmente esconder uno o el otro.
 
Upvote 0
Greg,

Los precios los tengo en otra hoja ya que esta hoja es un resumen donde ademas se entregan los costos y margenes de cada producto. Estos costos y margenes no los puede ver ell usuario común, por eso estan escondidos y la hoja esta protegida. Ademas, en la hoja donde elijo los productos, aparte de mostrarme la descripcion de cada prodcuto, me entrega otras caracteristicas que si las tuviera todas juntas en una sola hoja junto con lo precios, sería una tabla muy grande y la idea es que no sobrepase la pantalla para que los clientes la puedan leer facilmente.

Lo que habia pensado yo es que quizas en la hoja donde ingreso los productos, en vez de agregar una linea, se desescondiera una (unhide), y en la hoja de resumen ya existiera y si luego me sobran lineas las puedo esconder con la funcion zerohide. El problema es que tampoco se como desesconder una por una cada linea al final de la tabla.


Espero me haya entendido...y muchas gracias

Saludos :wink:

Anala
 
Upvote 0
Part 1 of 2 posts

Bueno, Anala,

Usted ya dijo que es bastante nueva para VBA y lo siento pero la solución es un poco detallado. Pero trataré de no asustarle. :o

1. Añada un botón (CommandButton) a cada una de las dos hojas. En mi caso puse el nombre de CmdBtnInsertRows a cada uno y una etiqueta (caption) de "Insertar Filas". Para funcionar mejor tendría que congelar su pantalla en una de las filas debajo del botón para que el usuario lo puede ver todo el tiempo. Entre las propiedades de cada botón, arregle TakeFocusOnClick a FALSE. Y probablemente, PrintObject a FALSE.

2. En los Code Modules para las hojas ponga el código que sigue.

Comentario 1: Note que en mi programación he referido a las hojas con su CodeName. No sé si su versión de Excel pondrá CodeNames de «Hoja1», «Hoja2»... o «Sheet1», «Sheet2»... En mi ejemplo asigné CodeNames de Hoja1 y Hoja2. Hoja1 siendo la hoja para el público y Hoja2 siendo la hoja que contiene los precios y otros datos que usted no desea compartir, pero realmente no importa cual es cual mientra una tiene el CodeName Hoja1 y la otra Hoja2. La utilización de CodeName brinda programación más resistente porque el usuario (o usted) puede cambiar el nombre de la hoja o a posición de la hoja sin afectar el CodeName. Si quiere saber más busque CodeName en VBA Help.

Comentario 2: Agregue programación para tratar de mantener sus dos hojas sincronizadas. Pero la parte clave para que el programa puede funcionar es que hay una clave que será única para cada artículo algo como número de pieza (Part Number) o número de modelo (Model Number). Algo que no aparecerá dos veces en la misma hoja pero debe estar en ambas.

Bueno, aquí está el código para las dos hojas:

<font face=Courier New><SPAN style="color:#007F00">' Worksheet Code Module for Hoja1</SPAN>


<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> CmdBtnInsertRows_Click()
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>
    
    InsertarDosVeces Me
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>

<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Worksheet_Change(<SPAN style="color:#00007F">ByVal</SPAN> Target <SPAN style="color:#00007F">As</SPAN> Range)
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>

<SPAN style="color:#007F00">' La programación aquí trata de mantener los dos listados:</SPAN>
<SPAN style="color:#007F00">' Hoja1 y Hoja 2 sincronizados.</SPAN>

<SPAN style="color:#007F00">' Si ha seleccionado más que una celda, brinque,</SPAN>
<SPAN style="color:#007F00">' o si ha seleccionado fuera de la primera columna, brinque.</SPAN>
<SPAN style="color:#007F00">' Si su valor clave está en otra columna tendrá que cambiar</SPAN>
<SPAN style="color:#007F00">' la segunda condición abajo para que corresponda a tal columna</SPAN>
<SPAN style="color:#007F00">' ej: ...Or Target.Column <> 3... si fuera la tercera columna</SPAN>

<SPAN style="color:#007F00">' La tercera condición correspondría al número de filas de cabeza</SPAN>
<SPAN style="color:#007F00">' que tiene Hoja1.  O sea que cambios a celdas en columna A de</SPAN>
<SPAN style="color:#007F00">' estas filas no se debe estar copiados a Hoja2.</SPAN>

    <SPAN style="color:#00007F">If</SPAN> Target.Count > 1 _
    <SPAN style="color:#00007F">Or</SPAN> Target.Column > 1 _
    <SPAN style="color:#00007F">Or</SPAN> Target.Row < 3 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#00007F">GoTo</SPAN> Jump1
    
    <SPAN style="color:#00007F">Dim</SPAN> rngCell <SPAN style="color:#00007F">As</SPAN> Range, rngCol <SPAN style="color:#00007F">As</SPAN> Range
    <SPAN style="color:#00007F">Dim</SPAN> rngQueBusco <SPAN style="color:#00007F">As</SPAN> Range, intOffsetBack <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Integer</SPAN>
    <SPAN style="color:#00007F">Dim</SPAN> strMensaje <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>
    
    <SPAN style="color:#00007F">Set</SPAN> rngCol = Hoja2.Columns("A:A")
    
    <SPAN style="color:#00007F">If</SPAN> Target.Offset(-1).Formula <> "" <SPAN style="color:#00007F">Then</SPAN>
        <SPAN style="color:#00007F">Set</SPAN> rngQueBusco = Target.Offset(-1)
        intOffsetBack = 1
    <SPAN style="color:#00007F">ElseIf</SPAN> Target.Offset(1).Formula <> "" <SPAN style="color:#00007F">Then</SPAN>
        <SPAN style="color:#00007F">Set</SPAN> rngQueBusco = Target.Offset(1)
        intOffsetBack = -1
    <SPAN style="color:#00007F">Else</SPAN>
        strMensaje = "La celda arriba y la abajo están vacios. Cualquier cambio " & _
                     "en esta celda no estará copiado a " & Hoja2.Name & "."
        MsgBox strMensaje, vbExclamation, "Celdas Vacias"
        <SPAN style="color:#00007F">GoTo</SPAN> Jump1
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
    
    <SPAN style="color:#00007F">Set</SPAN> rngCell = rngCol.Find(What:=rngQueBusco, _
                              After:=rngCol.Cells(1, 1), _
                              LookIn:=XlFindLookIn.xlValues, _
                              LookAt:=XlLookAt.xlWhole, _
                              SearchOrder:=XlSearchOrder.xlByRows, _
                              SearchDirection:=xlNext, _
                              MatchCase:=False)
    
    Application.EnableEvents = <SPAN style="color:#00007F">False</SPAN>
    <SPAN style="color:#00007F">If</SPAN> <SPAN style="color:#00007F">Not</SPAN> rngCell <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN> rngCell.Offset(intOffsetBack) = Target
    Application.EnableEvents = <SPAN style="color:#00007F">True</SPAN>
    
Jump1:
<SPAN style="color:#007F00">'"""""</SPAN>

    <SPAN style="color:#007F00">' si hay otra programación deseada póngala aquí</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>

</FONT>

<hr>

<font face=Courier New><SPAN style="color:#007F00">' Worksheet Code Module for Hoja2</SPAN>

<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> CmdBtnInsertRows_Click()
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>
    
    InsertarDosVeces Me
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>

<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Worksheet_Change(<SPAN style="color:#00007F">ByVal</SPAN> Target <SPAN style="color:#00007F">As</SPAN> Range)
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>

<SPAN style="color:#007F00">' La programación aquí trata de mantener los dos listados:</SPAN>
<SPAN style="color:#007F00">' Hoja1 y Hoja 2 sincronizados.</SPAN>

<SPAN style="color:#007F00">' Si ha seleccionado más que una celda, brinque,</SPAN>
<SPAN style="color:#007F00">' o si ha seleccionado fuera de la primera columna, brinque.</SPAN>
<SPAN style="color:#007F00">' Si su valor clave está en otra columna tendrá que cambiar</SPAN>
<SPAN style="color:#007F00">' la segunda condición abajo para que corresponda a tal columna</SPAN>
<SPAN style="color:#007F00">' ej: ...Or Target.Column <> 3... si fuera la tercera columna</SPAN>

<SPAN style="color:#007F00">' La tercera condición correspondría al número de filas de cabeza</SPAN>
<SPAN style="color:#007F00">' que tiene Hoja1.  O sea que cambios a celdas en columna A de</SPAN>
<SPAN style="color:#007F00">' estas filas no se debe estar copiados a Hoja2.</SPAN>

    <SPAN style="color:#00007F">If</SPAN> Target.Count > 1 _
    <SPAN style="color:#00007F">Or</SPAN> Target.Column > 1 _
    <SPAN style="color:#00007F">Or</SPAN> Target.Row < 3 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#00007F">GoTo</SPAN> Jump1
    
    <SPAN style="color:#00007F">Dim</SPAN> rngCell <SPAN style="color:#00007F">As</SPAN> Range, rngCol <SPAN style="color:#00007F">As</SPAN> Range
    <SPAN style="color:#00007F">Dim</SPAN> rngQueBusco <SPAN style="color:#00007F">As</SPAN> Range, intOffsetBack <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Integer</SPAN>
    <SPAN style="color:#00007F">Dim</SPAN> strMensaje <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>
    
    <SPAN style="color:#00007F">Set</SPAN> rngCol = Hoja1.Columns("A:A")
    
    <SPAN style="color:#00007F">If</SPAN> Target.Offset(-1).Formula <> "" <SPAN style="color:#00007F">Then</SPAN>
        <SPAN style="color:#00007F">Set</SPAN> rngQueBusco = Target.Offset(-1)
        intOffsetBack = 1
    <SPAN style="color:#00007F">ElseIf</SPAN> Target.Offset(1).Formula <> "" <SPAN style="color:#00007F">Then</SPAN>
        <SPAN style="color:#00007F">Set</SPAN> rngQueBusco = Target.Offset(1)
        intOffsetBack = -1
    <SPAN style="color:#00007F">Else</SPAN>
        strMensaje = "La celda arriba y la abajo están vacios. Cualquier cambio " & _
                     "en esta celda no estará copiado a " & Hoja1.Name & "."
        MsgBox strMensaje, vbExclamation, "Celdas Vacias"
        <SPAN style="color:#00007F">GoTo</SPAN> Jump1
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
    
    <SPAN style="color:#00007F">Set</SPAN> rngCell = rngCol.Find(What:=rngQueBusco, _
                              After:=rngCol.Cells(1, 1), _
                              LookIn:=XlFindLookIn.xlValues, _
                              LookAt:=XlLookAt.xlWhole, _
                              SearchOrder:=XlSearchOrder.xlByRows, _
                              SearchDirection:=xlNext, _
                              MatchCase:=False)
    
    Application.EnableEvents = <SPAN style="color:#00007F">False</SPAN>
    <SPAN style="color:#00007F">If</SPAN> <SPAN style="color:#00007F">Not</SPAN> rngCell <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN> rngCell.Offset(intOffsetBack) = Target
    Application.EnableEvents = <SPAN style="color:#00007F">True</SPAN>
    
Jump1:
<SPAN style="color:#007F00">'"""""</SPAN>

    <SPAN style="color:#007F00">' si hay otra programación deseada póngala aquí</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>


</FONT>

<hr>
End of Post 1
 
Upvote 0
Part 2 of 2 Posts

Ahora tiene que poner el código abajo en un Standard Module.

Partes de este de abajo y lo de arriba viene de rutinas que ya había hecho hace mucho tiempo para mi propio uso entonces es una mezcla de inglés y español a veces. Espero que pueda entender y ojalá que le ayude.


<font face=Courier New><SPAN style="color:#00007F">Option</SPAN> <SPAN style="color:#00007F">Explicit</SPAN>

<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Sub</SPAN> InsertarDosVeces(wsTarget <SPAN style="color:#00007F">As</SPAN> Worksheet)
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>
    
    <SPAN style="color:#007F00">' Escrito por: Greg Truby</SPAN>
    <SPAN style="color:#007F00">' Fecha hecha: Diciembre 2003</SPAN>
    
    <SPAN style="color:#00007F">Dim</SPAN> rngLlave <SPAN style="color:#00007F">As</SPAN> Range, rngGemelo <SPAN style="color:#00007F">As</SPAN> Range
    <SPAN style="color:#00007F">Dim</SPAN> wsPadreDelGemelo <SPAN style="color:#00007F">As</SPAN> Worksheet
    <SPAN style="color:#00007F">Dim</SPAN> strMensaje <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>, lngRowsInserted <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN>

    <SPAN style="color:#007F00">' Si su valor clave está en otra columna tendrá que cambiar</SPAN>
    <SPAN style="color:#007F00">' el segundo argumento abajo para que corresponde a tal columna</SPAN>
    <SPAN style="color:#00007F">Set</SPAN> rngLlave = Cells(ActiveCell.Row, 1)
    
    <SPAN style="color:#00007F">If</SPAN> rngLlave.Formula = "" <SPAN style="color:#00007F">Then</SPAN>
        strMensaje = "Para funcionar, el macro necesita que usted esté ubicado en " & _
                     "una celda que contiene datos.  Colóquese en la celda debajo de la " & _
                     "cual usted desea que aparezcan las filas nuevas."
        MsgBox strMensaje, vbCritical, "Selección Erronea"
        <SPAN style="color:#00007F">Exit</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
    
    <SPAN style="color:#00007F">If</SPAN> wsTarget <SPAN style="color:#00007F">Is</SPAN> Hoja1 <SPAN style="color:#00007F">Then</SPAN>
        <SPAN style="color:#00007F">Set</SPAN> wsPadreDelGemelo = Hoja2
    <SPAN style="color:#00007F">Else</SPAN>
        <SPAN style="color:#00007F">Set</SPAN> wsPadreDelGemelo = Hoja1
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>

    lngRowsInserted = InsertAndCopyRow
    <SPAN style="color:#00007F">If</SPAN> lngRowsInserted = 0 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#00007F">Exit</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
    <SPAN style="color:#00007F">Set</SPAN> rngGemelo = wsPadreDelGemelo.Cells.Find(rngLlave)

    <SPAN style="color:#00007F">If</SPAN> rngGemelo <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN>
        strMensaje = "No se encuentra " & rngLlave & " en hoja " & wsPadreDelGemelo.Name & "." & _
                     vbCr & vbCr & "Tendrá que insertar la filas manualmente."
        MsgBox strMensaje, vbInformation, "Failed Search"
        <SPAN style="color:#00007F">Exit</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
    
    wsPadreDelGemelo.Activate
    rngGemelo.Select
    InsertAndCopyRow lngRowsInserted
    wsTarget.Activate
    rngLlave.Select
    
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>


<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Function</SPAN> InsertAndCopyRow(<SPAN style="color:#00007F">Optional</SPAN> lngNumOfRows <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN> = 0) <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN>
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>
    
<SPAN style="color:#007F00">' Generalized subroutine to insert rows, copying formats and formulas</SPAN>
<SPAN style="color:#007F00">' into the newly inserted rows.</SPAN>

    <SPAN style="color:#00007F">If</SPAN> TypeName(Selection) <> "Range" <SPAN style="color:#00007F">Then</SPAN> BadSelectionMessage "InsertAndCopyRow", TypeName(Selection)
    
    InsertAndCopyRow = 0            <SPAN style="color:#007F00">' Default return value</SPAN>
    
    <SPAN style="color:#00007F">Dim</SPAN> rngRow <SPAN style="color:#00007F">As</SPAN> Range, rngToCopy <SPAN style="color:#00007F">As</SPAN> Range, rngTarget <SPAN style="color:#00007F">As</SPAN> Range
    <SPAN style="color:#00007F">Dim</SPAN> lngRow <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN>
    
    <SPAN style="color:#00007F">If</SPAN> lngNumOfRows = 0 <SPAN style="color:#00007F">Then</SPAN> lngNumOfRows = InputBox("How many rows do you wish to insert and copy?", _
                                            "Number of Rows", Selection.Rows.Count)
    <SPAN style="color:#00007F">If</SPAN> lngNumOfRows = 0 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#00007F">Exit</SPAN> <SPAN style="color:#00007F">Function</SPAN>
    
    <SPAN style="color:#00007F">Set</SPAN> rngRow = ActiveCell
    lngRow = rngRow.Row - rngRow.CurrentRegion.Cells(1, 1).Row + 1
    <SPAN style="color:#00007F">Set</SPAN> rngToCopy = rngRow.CurrentRegion.Range(Cells(lngRow, 1), Cells(lngRow, rngRow.CurrentRegion.Columns.Count))
    
    Application.EnableEvents = <SPAN style="color:#00007F">False</SPAN>
    rngToCopy.Offset(1, 0).Resize(lngNumOfRows).EntireRow.Insert
    <SPAN style="color:#00007F">Set</SPAN> rngTarget = rngToCopy.Offset(1, 0).Resize(lngNumOfRows)
    rngToCopy.Copy Destination:=rngTarget
    <SPAN style="color:#00007F">On</SPAN> <SPAN style="color:#00007F">Error</SPAN> <SPAN style="color:#00007F">Resume</SPAN> <SPAN style="color:#00007F">Next</SPAN>
    rngTarget.SpecialCells(xlCellTypeConstants).ClearContents
    Application.EnableEvents = <SPAN style="color:#00007F">True</SPAN>
    InsertAndCopyRow = lngNumOfRows
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Function</SPAN>


<SPAN style="color:#007F00">'¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯</SPAN>
<SPAN style="color:#00007F">Sub</SPAN> BadSelectionMessage(CallingRoutine, SelectionType <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>)
<SPAN style="color:#007F00">'______________________________________________________________________________</SPAN>
    
<SPAN style="color:#007F00">' Generic subroutine to call when user has tried to run a macro that uses</SPAN>
<SPAN style="color:#007F00">' selected range as a starting point and a chart, shape or other object</SPAN>
<SPAN style="color:#007F00">' is currently selected.</SPAN>

    <SPAN style="color:#00007F">Dim</SPAN> Mensaje <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN>
    Mensaje = CallingRoutine & " only works with range objects." & vbCrLf & vbCrLf & _
              "Currently a " & SelectionType & " is selected."
    Beep
    MsgBox Mensaje, vbCritical, "Invalid Selection"
    <SPAN style="color:#00007F">End</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>


</FONT>
 
Upvote 0
Greg:

Gracias!!!...me costo un poco pero lo logre...tuve que hacer algunos cambios pero al final funciona....muchas gracias por tu ayuda, gacias a ti por fin termine mi trabajo...

:beerchug:

ahora a celebrar!!!

Saludos y feliz navidad!!!
Analaura Aguilar S.
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,874
Members
452,363
Latest member
merico17

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