Change list data

  • Thread starter Thread starter Daveo
  • Start date Start date
D

Daveo

Hi there,

Is there a way of quickly turning some data in this format:

A B
Name Name1
Address Address1
Name Name2
Address Address2
Name Name3
Address Address3

Into this format:

A B
Name Address
Name1 Address1
Name2 Address2
Name3 Address3


Thanks in advance anyone - David
 
Fill down the columns C and D as far as you need:

C = INDIRECT("B" & ROW()*2-1)
D = INDIRECT("B" & ROW()*2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top