Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dan
 
Posts: n/a
Default Fields in a record are on the next line

I have a SS with six fields as follows:
Record 1-
A1, B1, C1, D1, A2, B2

I want to move A2 to E1 and B2 to F1 so Record 1 is on one line.
The present structure now is first record:
A1 B1 C1 D1
A2 B2
Line 3 Blank line and the next line (4) is the second record.
A4 B4 C4 D4
A5 B5
Line 6 Blank line
etc.

There are 2600 records like this. How can I correct this problem, automated,
if possible.
Thanks,
Dan

  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

It won't be too bad manually.

Put this in E1:
=IF(MOD(ROW(),3)=1,A2,NA())

Put this in F1:
=IF(MOD(ROW(),3)=1,B2,NA())

And drag down your 2600 rows.

You'll end up with errors on row 2,3, 5,6, 8,9, ...

Now you can select columns E:F and
edit|copy
edit|paste special|Values

Select column E
edit|goto|special
constants (but only leave errors checked)
rightclick on any of the selected cells and choose delete
delete entire row.



Dan wrote:

I have a SS with six fields as follows:
Record 1-
A1, B1, C1, D1, A2, B2

I want to move A2 to E1 and B2 to F1 so Record 1 is on one line.
The present structure now is first record:
A1 B1 C1 D1
A2 B2
Line 3 Blank line and the next line (4) is the second record.
A4 B4 C4 D4
A5 B5
Line 6 Blank line
etc.

There are 2600 records like this. How can I correct this problem, automated,
if possible.
Thanks,
Dan


--

Dave Peterson
  #3   Report Post  
Dan
 
Posts: n/a
Default

Thanks, Dave. I'll try it tomorrow and let you know.
Dan

"Dave Peterson" wrote:

It won't be too bad manually.

Put this in E1:
=IF(MOD(ROW(),3)=1,A2,NA())

Put this in F1:
=IF(MOD(ROW(),3)=1,B2,NA())

And drag down your 2600 rows.

You'll end up with errors on row 2,3, 5,6, 8,9, ...

Now you can select columns E:F and
edit|copy
edit|paste special|Values

Select column E
edit|goto|special
constants (but only leave errors checked)
rightclick on any of the selected cells and choose delete
delete entire row.



Dan wrote:

I have a SS with six fields as follows:
Record 1-
A1, B1, C1, D1, A2, B2

I want to move A2 to E1 and B2 to F1 so Record 1 is on one line.
The present structure now is first record:
A1 B1 C1 D1
A2 B2
Line 3 Blank line and the next line (4) is the second record.
A4 B4 C4 D4
A5 B5
Line 6 Blank line
etc.

There are 2600 records like this. How can I correct this problem, automated,
if possible.
Thanks,
Dan


--

Dave Peterson

  #4   Report Post  
Dan
 
Posts: n/a
Default

Thanks, Dave. That works for me!

"Dan" wrote:

Thanks, Dave. I'll try it tomorrow and let you know.
Dan

"Dave Peterson" wrote:

It won't be too bad manually.

Put this in E1:
=IF(MOD(ROW(),3)=1,A2,NA())

Put this in F1:
=IF(MOD(ROW(),3)=1,B2,NA())

And drag down your 2600 rows.

You'll end up with errors on row 2,3, 5,6, 8,9, ...

Now you can select columns E:F and
edit|copy
edit|paste special|Values

Select column E
edit|goto|special
constants (but only leave errors checked)
rightclick on any of the selected cells and choose delete
delete entire row.



Dan wrote:

I have a SS with six fields as follows:
Record 1-
A1, B1, C1, D1, A2, B2

I want to move A2 to E1 and B2 to F1 so Record 1 is on one line.
The present structure now is first record:
A1 B1 C1 D1
A2 B2
Line 3 Blank line and the next line (4) is the second record.
A4 B4 C4 D4
A5 B5
Line 6 Blank line
etc.

There are 2600 records like this. How can I correct this problem, automated,
if possible.
Thanks,
Dan


--

Dave Peterson

  #5   Report Post  
Dave Peterson
 
Posts: n/a
Default

And not too bad if you only have to do it once (or twice...)

Dan wrote:

Thanks, Dave. That works for me!

"Dan" wrote:

Thanks, Dave. I'll try it tomorrow and let you know.
Dan

"Dave Peterson" wrote:

It won't be too bad manually.

Put this in E1:
=IF(MOD(ROW(),3)=1,A2,NA())

Put this in F1:
=IF(MOD(ROW(),3)=1,B2,NA())

And drag down your 2600 rows.

You'll end up with errors on row 2,3, 5,6, 8,9, ...

Now you can select columns E:F and
edit|copy
edit|paste special|Values

Select column E
edit|goto|special
constants (but only leave errors checked)
rightclick on any of the selected cells and choose delete
delete entire row.



Dan wrote:

I have a SS with six fields as follows:
Record 1-
A1, B1, C1, D1, A2, B2

I want to move A2 to E1 and B2 to F1 so Record 1 is on one line.
The present structure now is first record:
A1 B1 C1 D1
A2 B2
Line 3 Blank line and the next line (4) is the second record.
A4 B4 C4 D4
A5 B5
Line 6 Blank line
etc.

There are 2600 records like this. How can I correct this problem, automated,
if possible.
Thanks,
Dan

--

Dave Peterson


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
unexpected line breaks in .csv mwarner Excel Discussion (Misc queries) 2 July 29th 05 04:20 AM
flip spreadsheet data from row records to column record fields Wasan Excel Discussion (Misc queries) 1 May 27th 05 10:05 PM
flip spreadsheet data from row records to column record fields Peo Sjoblom Excel Discussion (Misc queries) 0 May 27th 05 09:52 PM
Line chart - date line association gone mad! Johannes Czernin Charts and Charting in Excel 5 January 17th 05 08:48 PM
Macro - Skipping a line PaulPoll Excel Worksheet Functions 4 December 21st 04 12:43 AM


All times are GMT +1. The time now is 07:04 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"