una seleccionar salteadas personalizado para otra lista hoja filtros filtro filtrar filas ejercicios datos copiar celdas avanzados avanzado excel vba excel-vba outlook outlook-vba

seleccionar - ¿Cómo copiar el rango de Excel a Outlook ignorando la primera columna donde se aplica el filtro?



formula de excel para seleccionar datos (2)

Hola, tengo un código que filtra los valores únicos en la columna A y copia todo el rango de A1: H, pero quiero ignorar la primera columna y quiero que el rango se copie desde B1: H.

Por ejemplo: si hay una tabla con las marcas de los estudiantes y quiero publicar la tabla de calificaciones individuales para cada estudiante por separado. Esta macro está enviando la tabla junto con el nombre del estudiante que está en la primera columna, pero solo necesito marcar la tabla, no necesito el nombre de los estudiantes junto con eso.

Aquí está mi código

Sub Send_Row_Or_Rows_1() Dim OutApp As Object Dim OutMail As Object Dim rng As Range Dim Ash As Worksheet Dim Cws As Worksheet Dim Rcount As Long Dim Rnum As Long Dim FilterRange As Range Dim FieldNum As Integer Dim mailAddress As String Dim StrBody As String On Error GoTo cleanup Set OutApp = CreateObject("Outlook.Application") With Application .EnableEvents = False .ScreenUpdating = False End With Set Ash = ActiveSheet ''Set filter range and filter column (Column with names) Set FilterRange = Ash.Range("A1:H" & Ash.Rows.Count) FieldNum = 1 ''Filter column = A because the filter range start in A ''Add a worksheet for the unique list and copy the unique list in A1 Set Cws = Worksheets.Add FilterRange.Columns(FieldNum).AdvancedFilter _ Action:=xlFilterCopy, _ CopyToRange:=Cws.Range("A1"), _ CriteriaRange:="", Unique:=True ''Count of the unique values + the header cell Rcount = Application.WorksheetFunction.CountA(Cws.Columns(1)) ''If there are unique values start the loop If Rcount >= 2 Then For Rnum = 2 To Rcount ''Filter the FilterRange on the FieldNum column FilterRange.AutoFilter Field:=FieldNum, _ Criteria1:=Cws.Cells(Rnum, 1).Value ''Look for the mail address in the MailInfo worksheet mailAddress = "" On Error Resume Next mailAddress = Application.WorksheetFunction. _ VLookup(Cws.Cells(Rnum, 1).Value, _ Worksheets("Mailinfo").Range("A1:B" & _ Worksheets("Mailinfo").Rows.Count), 2, False) On Error GoTo 0 If mailAddress <> "" Then With Ash.AutoFilter.Range On Error Resume Next Set rng = .SpecialCells(xlCellTypeVisible) On Error GoTo 0 End With Set OutMail = OutApp.CreateItem(0) On Error Resume Next With OutMail .to = mailAddress .Subject = "Test mail" .HTMLBody = StrBody & RangetoHTML(rng) .Display ''Or use Send StrBody = Sheets("Body").Range("A1").Value & "<br>" & _ Sheets("Body").Range("A2").Value & "<br>" & _ Sheets("Body").Range("A3").Value & "<br><br><br>" End With On Error GoTo 0 Set OutMail = Nothing End If ''Close AutoFilter Ash.AutoFilterMode = False Next Rnum End If cleanup: Set OutApp = Nothing Application.DisplayAlerts = False Cws.Delete Application.DisplayAlerts = True With Application .EnableEvents = True .ScreenUpdating = True End With End Sub


Al usar desplazamiento, puede seleccionar columna filtrada específica sin encabezado o con encabezado

Por favor, mira el siguiente código:

Set rng = .AutoFilter.Range.Offset(1, ColumnNumber).Resize(.AutoFilter.Range.Rows.Count - 1, ColumnCount).SpecialCells(xlCellTypeVisible)

ColumnNumber - columna de inicio para copiar ColumnCount - número de columnas para copiar

Prueba debajo de uno:

set rng = Ash.Autofilter.Range.Offset (1) .Resize (Ash.AutoFilter.Range.Rows.Count - 1,7) .SpecialCells (xlCellTypeVisible)


Si desea seguir con su solución en lugar de utilizar las herramientas de correo de Word ,

Solo cambia esta línea:

Set rng = .SpecialCells(xlCellTypeVisible)

A

Set rng = Application.Intersect(.SpecialCells(xlCellTypeVisible),Ash.Range("B:H"))