A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Copying transactions pairs to the next row



 
 
Thread Tools Display Modes
  #1  
Old July 6th, 2004, 10:45 AM
TurkisH
external usenet poster
 
Posts: n/a
Default Copying transactions pairs to the next row

Hiya peeps,

I need to copy transaction pairs to the next row. A particular row
looks like this:


Code:
--------------------

1863 1864 1865 1866 1867 1868 1869

2000 3000 1805 1000
--------------------

So now I need to take first to take the first transaction pair in this
case 2000 and 3000 and put them into the next row, like this:

Code:
--------------------

1863 1864 1865 1866 1867 1868 1869

2000 3000

--------------------

After that I need to put the next transaction pair 3000 and 1805 to the
row after that one, like this:

Code:
--------------------

1863 1864 1865 1866 1867 1868 1869

3000 1805

--------------------

And so on, furthermore the new rows with the transactions pairs should
be inserted since there are more rows with data which need the same
formulas. Can anyone help me with this problem, I would be very
grateful, I have trouble, because I don't know how to check how to skip
the null values and find the correct transaction pair (so first the
first one, then second etc).

Kind regards,

TurkisH


---
Message posted from http://www.ExcelForum.com/

  #2  
Old July 6th, 2004, 08:26 PM
jeff
external usenet poster
 
Posts: n/a
Default Copying transactions pairs to the next row

Hi, Turkish,

Try this macro on a TEST copy of your data sheet.
(it leaves row 1 alone)

jeff

Sub MakePairs()
Dim lastrow As Long
Dim numColumns As Long
Dim StartCol As Integer
Dim CopyOne, CopyTwo As Variant
LastInsertRow = 0
Application.ScreenUpdating = False

ActiveCell.SpecialCells(xlLastCell).Select
lastrow = ActiveCell.Row

numColumns = ActiveSheet.Range("A1").End(xlToRight).Column
For row_index = lastrow To 2 Step -1
For cols = 1 To numColumns
CopyOne = ""
CopyTwo = ""
If Cells(row_index, cols).Value "" Then
CopyOne = Cells(row_index, cols).Value
For cols2 = cols + 1 To numColumns
If Cells(row_index, cols2).Value "" Then
CopyTwo = Cells(row_index, cols2).Value
Exit For
End If
Next cols2
End If
If CopyOne "" And CopyTwo "" Then
If LastInsertRow = 0 Then LastInsertRow =
row_index + 1
Range(Cells(LastInsertRow, 1), Cells
(LastInsertRow, 1)).Select
Selection.EntireRow.Insert shift:=xlShiftDown
Range(Cells(LastInsertRow, cols), Cells
(LastInsertRow, cols)).Value = CopyOne
Range(Cells(LastInsertRow, cols2), Cells
(LastInsertRow, cols2)).Value = CopyTwo
LastInsertRow = Selection.Row + 1
End If
Next cols
'Rows(row_index).Delete 'uncomment this line to
delete original data row
LastInsertRow = 0
Next row_index

Application.ScreenUpdating = True
End Sub

-----Original Message-----
Hiya peeps,

I need to copy transaction pairs to the next row. A

particular row
looks like this:


Code:
--------------------

1863 1864 1865 1866 1867 1868 1869

2000 3000 1805 1000
--------------------

So now I need to take first to take the first

transaction pair in this
case 2000 and 3000 and put them into the next row, like

this:

Code:
--------------------

1863 1864 1865 1866 1867 1868 1869

2000 3000

--------------------

After that I need to put the next transaction pair 3000

and 1805 to the
row after that one, like this:

Code:
--------------------

1863 1864 1865 1866 1867 1868 1869

3000 1805

--------------------

And so on, furthermore the new rows with the

transactions pairs should
be inserted since there are more rows with data which

need the same
formulas. Can anyone help me with this problem, I would

be very
grateful, I have trouble, because I don't know how to

check how to skip
the null values and find the correct transaction pair

(so first the
first one, then second etc).

Kind regards,

TurkisH


---
Message posted from http://www.ExcelForum.com/

.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Long Delay copying xls files in Windows Explorer Brett W General Discussion 0 July 1st, 2004 05:41 AM


All times are GMT +1. The time now is 06:24 AM.


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