Saltar al contenido

Autofiltar y copiar celda visible en otra celda


Recommended Posts

publicado

Buenas tardes, tengo el siguiente código, pero no sé qué instrucción necesito agregar para que pegue solo los valores de la celda copiada. Ya que me manda error de compilación, de antemano, gracias por la ayuda

Sub FirstVisibleCell()
 With Worksheets("Seguimiento").AutoFilter.Range
       ActiveCell.Value2 = Range("C" & .Offset(1, 0).SpecialCells(xlCellTypeVisible)(1).Row).Value2
       Selection.CurrentRegion.Select
       Selection.SpecialCells(xlCellTypeVisible).Select
      ActiveCell.Copy Destination:=Range("F1").PasteSpecial xlPasteValues
      End With
End Sub

publicado

Sin entrar a valorar nada más que el error:

Sub FirstVisibleCell()
With Worksheets("Seguimiento").AutoFilter.Range
   ActiveCell.Value2 = Range("C" & .Offset(1, 0).SpecialCells(xlCellTypeVisible)(1).Row).Value2
   Selection.CurrentRegion.Select
   Selection.SpecialCells(xlCellTypeVisible).Select
   ActiveCell.Copy: Range("F1").PasteSpecial xlPasteValues '<--------------
End With
End Sub

 

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

×
×
  • Crear nuevo...

Información importante

Echa un vistazo a nuestra política de cookies para ayudarte a tener una mejor experiencia de navegación. Puedes ajustar aquí la configuración. Pulsa el botón Aceptar, si estás de acuerdo.