Um comportamento imprevisto de "Para Cada wks Em ActiveWindow.SelectedSheets", ela afeta mais de coluna que deve ser

0

Pergunta

eu fiz esse código que funciona muito bem, exceto a última parte:

O comportamento de última parte deve ser ".Interior.Cor" e ".Valor" afetada até que a última coluna preenchida, em vez disso, afeta a primeira célula de muitas outras colunas. Qualquer idéias?

  Sub Sample_Workbook()
        
        'Creation of new workbook
        Application.ScreenUpdating = False        
        Workbooks.Add
        
        Set wb = ActiveWorkbook
        wb.SaveAs ThisWorkbook.Path & "etc.xlsx"
        
        'following variable is declared for sending mail purpose
        SourceWorkbook = ActiveWorkbook.Name
        
        Set this = Workbooks("Sample")
        Set wb = ActiveWorkbook
        Set ws1 = wb.Sheets("Sheet1")
        wb.Sheets.Add After:=Sheets(1)
        Set ws2 = wb.Sheets(2)
        wb.Sheets.Add After:=Sheets(2)
        Set ws3 = wb.Sheets(3)
        ws1.Name = "Sheet1"
        ws2.Name = "Sheet2"
        ws3.Name = "Sheet3"
        
        
        'Model the new excel with the requirements:
        Dim Population, Population2 As Range
        Dim lastRow As Long, firstRow As Long
        Dim sampleSize As Long
        Dim unique As Boolean
        Dim i As Long, d As Long, n As Long
        
        
        'following function perfoms all the calculations and copy and pasting        
            
            doTheJob x, y, z, num, q           
            doTheJob x, y, z, num, q 
            doTheJob x, y, z, num, q 
                
        'copy and paste the remaining sheets from the sample files
            Workbooks.Open ThisWorkbook.Path & "Sample2.xlsx"
                Sheets("Sheetx").Copy After:= _
                 Workbooks(SourceWorkbook).Sheets(6)
            Workbooks("Sample2.xlsx").Close SaveChanges:=False
        
        Application.ScreenUpdating = True
        Application.CutCopyMode = False
        ws1.Select
        wb.Close SaveChanges:=True
        End Sub

'these will make the variable available to all modules of this macro Workbook
Public SourceWorkbook As String
Public this, wb As Workbook
Public data As Range
Public output As Range
Public ws1, ws2, ws3 As Worksheet
Public LastCol As Long
Public wks As Worksheet
Public iCol As Long




'FUNCTION
Sub doTheJob(x As String, y As String, z As String, num As Integer, q As String)

    'beginning logic.
    this.Worksheets(x).Activate

Set Population = Range("a3", Range("a3").End(xlDown))
    sampleSize = this.Worksheets("SNOW Reports").Range(y).Value

Set r = Population
    lastRow = r.Rows.Count + r.Row - 1
    firstRow = r.Row


    For i = 1 To sampleSize
   Do
   
    unique = True
    n = Application.WorksheetFunction.RandBetween(firstRow, lastRow)
    
        For d = 1 To i - 1
        'wb.Sheets(z).Activate
        
          If wb.Sheets(z).Cells(d + 1, 50) = n Then
            unique = False
            Exit For
            End If
        Next d
        
          If unique = True Then
          Exit Do
          End If
        
    Loop
    
    Set data = this.Worksheets(x).Range("a" & n, Range("a" & n).End(xlToRight))
    Set output = wb.Worksheets(z).Range("A" & i + 1)
     
    output.Resize(data.Rows.Count, data.Columns.Count).Value = data.Value
        'THE NEXT LINE IS JUST FOR DELETEING LAST COLUMN PURPOSE
    wb.Worksheets(z).Cells(1, 50) = "REF COL"
    wb.Worksheets(z).Cells(i + 1, 50) = n
    
 this.Worksheets(x).Activate
    
Next i

    'delete REF COL:
       With wb.Sheets(z)
            .Columns(50).Delete
        End With
    
    'copy and paste header:
    Set data = this.Worksheets(x).Range("a2", Range("a2").End(xlToRight))
    Set output = wb.Sheets(z).Range("A1")
    
    output.Resize(data.Rows.Count, data.Columns.Count).Value = data.Value
     
'_________________________________________________________________________________________________________

'copy and paste into new sheet with recorded macro
    
   wb.Activate
   Sheets.Add(After:=Sheets(num)).Name = q
   wb.Worksheets(z).Cells.Copy Destination:=wb.Worksheets(q).Range("A1")
             
    'create columns and add color and text dinamically
    For Each wks In ActiveWindow.SelectedSheets
        With wks
            For iCol = .Cells.SpecialCells(xlCellTypeLastCell).Column To 2 Step -1
                .Columns(iCol).Insert
                With Cells(1, iCol)
                .Interior.Color = 65535
                .Value = Cells(1, iCol - 1) & " - Comparison"
                End With
            Next iCol
        End With
    Next wks

End Sub
excel foreach vba
2021-11-23 21:01:44
1

Melhor resposta

0

Se eu entendo o que você está buscando para fazer, a seguir faz o que você quer.

  • O código pode ser abordado de forma diferente (e possivelmente mais eficiente), se o contexto maior era conhecido
  • No entanto, tenho a sensação que este é apenas um estágio do seu desenvolvimento, portanto, ter ficado com a sua abordagem (onde razoável).
' I suggest this goes to the top of the sub (no need for public declaration)
' Note the shorthand declaration: 'lgRow&' is the same as `lgRow as Long'
    Dim lgRow&, lgCol&, lgLastRow&
             

' Replaces the code starting with the next comment 
    'create columns and add color and text dynamically
    For Each wks In ActiveWindow.SelectedSheets
        With wks
            For lgCol = .Cells.SpecialCells(xlCellTypeLastCell).Column To 2 Step -1
                
                ' Insert a column (not sure why you're not doing this after the last column also)
                .Columns(lgCol).Insert
                
                ' Get last row with data in the column 1 to the left
                With .Columns(lgCol - 1)
                    lgLastRow = .Cells(.Cells.Count).End(xlUp).Row
                End With
                    
                ' In the inserted column:
                ' o Set cell color
                ' o Set value to corresponding cell to the left, appending ' - Comparison'
                For lgRow = 1 To lgLastRow
                    With .Cells(lgRow, lgCol)
                        .Interior.Color = 65535
                        .Value = .Offset(0, -1) & " - Comparison"
                    End With
                Next lgRow
            Next lgCol
        End With
    Next wks

Nota 1: Não tenho certeza do motivo, mas o seu código insere a comparação de colunas' depois de cada coluna, exceto a última coluna (dos dados copiados). Se eu entendi sua intenção corretamente, eu supor que você queira fazer isso para a última coluna também. Se isso é verdade:

'change this line
    For lgCol = .Cells.SpecialCells(xlCellTypeLastCell).Column To 2 Step -1
'To:
    For lgCol = .Cells.SpecialCells(xlCellTypeLastCell).Column + 1 To 2 Step -1

Nota 2: o Meu alterações de código escrita <cell value> & " - Comparison" para todas as células em cada coluna, até o último não-célula em branco em cada 'em relação' coluna (incluindo células em branco acima). Se você quer fazer o que escrever para todas as linhas na copiado do intervalo de dados (se as células estão em branco ou não), você pode simplificar o código, colocando o seguinte:

' Insert this:
    lgLastRow = .Cells.SpecialCells(xlCellTypeLastCell).Row
'above line:
    For lgCol = ....

E remover este:

    ' Get last row with data in the column 1 to the left
    With .Columns(iCol - 1)
        lgLastRow = .Cells(.Cells.Count).End(xlUp).Row
    End With

Outra Nota / Ponteiros:

  1. Recomendo Option Explicit no topo de todos os módulos (só salva um monte de depuração devido a erros de digitação)
  2. Não há nenhuma necessidade (e isso não é uma boa prática) declarar a Public as variáveis que são usadas apenas localmente, em um determinado Sub ou Function. Em vez disso, declarar mesmo local (normalmente no topo das Sub ou Function).
  3. É uma boa prática usar as principais caracteres de nomes de variáveis para a IDENTIFICAÇÃO do tipo de dados. Pode ter qualquer comprimento, mas normalmente é 1, 2 ou 3 chars (coder preferência). exemplo Acima eu usei lg a IDENTIFICAÇÃO de tipos de dados longos. Da mesma forma, eu uso in para Integer, st para String, rg para Range, etc.
2021-11-24 07:52:25

Eu não tenho certeza de como amplamente utilizado notação húngara é atualmente, e sempre houve um debate sobre se era ou não uma boa coisa. Quero dizer, ele pode ser útil, apenas IMO, em detrimento de legibilidade (e alguns brevidade que é secundário).
Chris Strickland

Re 3) o Que você está defendendo aqui é "sistemas húngaro", que é amplamente desacreditado. Por outro lado, "Aplicações húngaro" pode ser útil. Uma boa leitura (não sobre vba, mas ainda relevante)
chris neilsen

@Chris Strickland: de acordo não é a favor e contra. Em línguas em que tipo de dados está implícito (versus explícito), eu optar para fins de nomeação. Em linguagens (como o vba), onde é explícita, eu com o pau 'tentado e provado como eu acho que faz a depuração mais fácil.
Spinner

Em outros idiomas

Esta página está em outros idiomas

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................