Splitting Data Across Worksheets
Posted by karen on February 17, 2001 5:35 AM
I have a worksheet containing 345600 lines of data, 8640 beginning in $a, 8640 beginning in $z and 17280 beginning in $w. I need t split this data up into three worksheets, with each type of data on a seperate worksheet. I have tried using:
Dim C as range
For each C in range (Range("A1"), range("A65536").end(xlup))
If C.Value = "$a" then
c.entirerow.copy
activesheet.paster sheets(c.value).range("a65536").end(xlup)
end if
next
for each of the row headings, but the computer keeps locking up on the third data type, and it takes an eternity to finish the first two.
Is there any easier way to do this?