Replicando um padrão de fórmula no Excel

0

Eu tenho uma planilha que se parece com isso: .

Eu quero preencher a segunda tabela usando os valores da primeira tabela. A maneira óbvia (e laboriosa) seria fazer isso manualmente, e. B7 teria a fórmula =B2 , B8 seria =D2 e assim por diante.

Existe uma maneira de obter o Excel para reconhecer o padrão, ou seja, uma coluna na segunda tabela é igual a cada segundo valor em uma linha na primeira tabela? Quando tento arrastar o canto inferior direito da célula, um padrão incorreto é seguido.

    
por M Agil 02.08.2016 / 11:26

2 respostas

1

Não, não há uma maneira exata para isso, você tem duas soluções alternativas:

  1. Com transposição:

    • Excluir as colunas vazias
    • selecione seus dados e pressione CTRL + C
    • ir para casa - colar - transpor
  2. com fórmula

    • preencha os cabeçalhos
    • em B7 insira =INDEX($B$2:$H$4,MATCH(B$6,$A$2:$A$4,0),MATCH($A7,$B$1:$H$1,0))
    • preencha a fórmula abaixo e à direita
por 02.08.2016 / 11:36
0

Eu fiquei sem tempo, então não estou prometendo que seja eficiente ou mesmo codificado, mas esse VBa funciona. (editar, e também não percebeu que você tinha uma resposta aceita, mas vai manter isso de qualquer maneira)

Não há opção de desfazer ao executar o VBa, então faça o backup primeiro.

Option Explicit

Sub doTheThing()

Dim userStartRowInColA As Integer
userStartRowInColA = 2                   'update this as needed, in your example I assume the rows start on row 2

Dim userColDifference As Integer
userColDifference = 2                   'in your example, the top table is every 2 rows, hence the 2



Dim startRowInColA As Integer
startRowInColA = userStartRowInColA

Dim vals As String
vals = ""

Dim items As String
items = ""

Dim valsMissedTwo As Boolean
valsMissedTwo = False

Dim startCol As Integer
startCol = 65

Do While (True)

Dim col As String
col = Chr(startCol)

If Range(col & 1).Value = "" And valsMissedTwo Then
    Exit Do
Else
    valsMissedTwo = False
End If

If Range(col & 1).Value = "" And Not valsMissedTwo Then
    valsMissedTwo = True
End If

If Range(col & 1).Value <> "" Then
    vals = vals + Range(col & 1).Value + ","
End If


startCol = startCol + 1
Loop



Do While Range("A" & startRowInColA).Value <> ""

items = items + Range("A" & startRowInColA).Value + ","

startRowInColA = startRowInColA + 1
Loop


Dim table2StartCol As Integer
Dim table2StartRow As Integer
table2StartRow = startRowInColA + 1
table2StartCol = 66


Dim splitVals() As String
splitVals = Split(vals, ",")

Dim splitItems() As String
splitItems = Split(items, ",")

'add the items as cols
For startCol = 1 To UBound(splitItems)
    If splitItems(startCol - 1) <> "" Then
        Range(Chr(65 + startCol) & startRowInColA + 5).Value = splitItems(startCol - 1)
    End If
Next startCol


'add the vals on left as rows

For startCol = 1 To UBound(splitVals)
    If splitVals(startCol - 1) <> "" Then
        Range("A" & startCol + startRowInColA + 5).Value = splitVals(startCol - 1)
    End If
Next startCol

'now to populate

Dim sr As Integer
sr = startRowInColA + 6

Dim sc As Integer
sc = 66

Dim oSr As Integer
oSr = userStartRowInColA


Dim i As Integer
i = 0

Dim j As Integer
j = 0



Do While (True)
Do While Range(Chr(sc) & oSr).Value <> ""

    Range(Chr(sc + i) & sr).Value = Range(Chr(sc + j) & oSr).Value

i = i + 1
oSr = oSr + 1

Loop

j = j + userColDifference
i = 0
oSr = userStartRowInColA
sr = sr + 1
If Range("A" & sr).Value = "" Then
    Exit Do
End If

Loop


End Sub

Antes

Depois

Comovocêpodever,vocênãoprecisacriarasegundatabela,elatambéméfeitaautomaticamente

Como eu adiciono o VBA no MS Office?

    
por 02.08.2016 / 13:50