How to merge several Excel tables into one?

Asked

Viewed 63 times

1

I have 3000 tables like in this example:

txt sheet

I need to merge them into one and I’m using the remote:

=ÍNDICE(TXT!$B$1:$B$200,CORRESP(MAIOR(SE(TXT!$A$1:$A$200="Last Name:",TXT!$B$1:$B$200,""),1),TXT!$B$1:$B$200,0))

The problem is that you just present me with the following:

inserir a descrição da imagem aqui

Is this command the right one for this case? If so, what am I doing wrong?

PS: I only need the data marked in csv sheet

1 answer

0

If the intervals are regular, you can do the following: Create an auxiliary column in the CSV tab with title "line" in A2

in A3 fill with number 8, which is the first line of the TXT tab card

in A4 fill with =A3+15

the formula for cell B3 will be =índice(txt!$b:$b;$A3;1)

the C3 formula will be =índice(txt!$b:$b;$A3+1;1)

the formula for cell D3 will be =índice(txt!$b:$b;$A3+2;1)

And so on and so forth...

  • Thanks for the help, solved my question

Browser other questions tagged

You are not signed in. Login or sign up in order to post.