ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Sorting Data (https://www.excelbanter.com/excel-programming/368744-sorting-data.html)

T De Villiers[_65_]

Sorting Data
 

I have data in following format (this is just an extract, there are 60
rows
under headings A-F)

A
J1
J2
J3

B
J77
J65
J31

C
J22
J11
J9

........
So I have cost Centres, A -F ( these can be in any order), with Jo
numbers
below(always prefixed by J), there can be any number of Job numbers.




I need to get the above into the order:


J1 A
J2 A
J3 A


J77 B
J65 B
J31 B


J22 C
J11 C
J9 C

Many Thank

--
T De Villier
-----------------------------------------------------------------------
T De Villiers's Profile: http://www.excelforum.com/member.php...fo&userid=2647
View this thread: http://www.excelforum.com/showthread.php?threadid=56631


Tom Ogilvy

Sorting Data
 
Sub ABC()
Dim rng as Range, cell as Range, ar as Range
set rng = Columns(1).SpecialCells(xlConstants)
for each ar in rng.Areas
for each cell in ar
if cell.row < ar(1).Row then
cell.offset(0,1).Value = ar(1).Value
end if
next cell
ar(1).ClearContents
next ar
End Sub


--
Regards,
Tom Ogilvy

"T De Villiers"
wrote in message
news:T.De.Villiers.2bq1ns_1154201108.0909@excelfor um-nospam.com...

I have data in following format (this is just an extract, there are 600
rows
under headings A-F)

A
J1
J2
J3

B
J77
J65
J31

C
J22
J11
J9

.......
So I have cost Centres, A -F ( these can be in any order), with Job
numbers
below(always prefixed by J), there can be any number of Job numbers.




I need to get the above into the order:


J1 A
J2 A
J3 A


J77 B
J65 B
J31 B


J22 C
J11 C
J9 C

Many Thanks


--
T De Villiers
------------------------------------------------------------------------
T De Villiers's Profile:
http://www.excelforum.com/member.php...o&userid=26479
View this thread: http://www.excelforum.com/showthread...hreadid=566317




T De Villiers[_66_]

Sorting Data
 

Thanks Tom, that works a treat


--
T De Villiers
------------------------------------------------------------------------
T De Villiers's Profile: http://www.excelforum.com/member.php...o&userid=26479
View this thread: http://www.excelforum.com/showthread...hreadid=566317



All times are GMT +1. The time now is 12:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com