+ Reply to Thread
Results 1 to 2 of 2

data arranging

Hybrid View

deepak.kec data arranging 10-21-2008, 01:48 AM
Andy Pope Assuming your data is sorted... 10-21-2008, 05:08 AM
  1. #1
    Registered User
    Join Date
    10-16-2008
    Location
    bangalore
    Posts
    28

    data arranging

    I have few records stored as '07, '03, '05, '06 in the excel. I want that each record of '07,'03 , '05, '06 should start from next column and in the same row.

    For Example:
    Currently situation is as follows:
    Column 1 Column 2
    '07 INDIA
    '07 Delhi
    '07 123
    '03 AAA
    '05 XXXQQ

    I want them to be like:
    Column 1 Column 2 Column 3 Column 4 Column 5 Column 6
    '07 INDIA '03 AAA '05 XXXQQ
    '07 Delhi
    '07 123

    Please let me know the solution.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481
    Assuming your data is sorted into groups as per your example.

    Sub X()
    
        Dim lngRow As Long
        Dim strPreviousItem As String
        Dim lngCol As Long
        Dim lngOutRow As Long
        
        lngRow = 1
        strPreviousItem = Cells(lngRow, 1)
        Do While Len(Cells(lngRow, 1)) > 0
            If Cells(lngRow, 1) <> strPreviousItem Then
                Exit Do
            End If
            lngRow = lngRow + 1
        Loop
        lngCol = 1
        Do While Len(Cells(lngRow, 1)) > 0
            If Cells(lngRow, 1) <> strPreviousItem Then
                strPreviousItem = Cells(lngRow, 1)
                lngCol = lngCol + 2
                If Len(Cells(1, lngCol)) = 0 Then
                    lngOutRow = 1
                Else
                    lngOutRow = Cells(Rows.Count, lngCol).End(xlUp).Row + 1
                End If
            End If
            With Cells(lngRow, 1).Resize(1, 2)
                .Copy Cells(lngOutRow, lngCol)
                .Clear
            End With
            lngOutRow = lngOutRow + 1
            lngRow = lngRow + 1
        Loop
    End Sub
    Cheers
    Andy
    www.andypope.info

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Data and number manipulation
    By Mwhite in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-15-2015, 06:41 AM
  2. automatically move left one cell after data input by scanner.
    By dgbillings in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-24-2010, 10:58 PM
  3. Replies: 2
    Last Post: 02-14-2008, 05:02 PM
  4. importing data:What i would like to do is be able to import
    By censura in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-01-2007, 08:32 AM
  5. Macro to create new sheets from master data sheet
    By adsigel in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-04-2006, 09:21 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1