+ Reply to Thread
Results 1 to 10 of 10

Userform to Export Certain Data

Hybrid View

  1. #1
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello RicRec,

    Will the data on the new sheet be in a single column also?

    Thanks,
    Leith Ross

  2. #2
    Registered User
    Join Date
    07-17-2007
    Posts
    18
    Hi Leith

    Well the spreadsheet data is actually formed of 5 columns, i was hoping that the column containing the week no could be used in a way similar to a vlookup if that makes sense?

    So by entering or selecting say week number "42" all the data with week no "42" in the relevant column would be sent across to the new sheet.

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Place a combobox and a commandbutton onto a UserForm. Then use this code

    Load the ComboBox with week numbers

    Private Sub UserForm_Initialize()
        Dim i      As Integer
        For i = 1 To 52
            Me.ComboBox1.AddItem i
        Next i
    End Sub
    In the commandbutton this code will copy the weekly data, week numbers are in Column A

    Private Sub CommandButton1_Click()
        On Error Resume Next
        Dim c      As Range
        Dim myRange As Range
        Dim rng    As Range
        Dim wk     As Integer
        Dim r      As Long
    
        Set rng = Range(Cells(1, 1), Cells(Rows.Count, 1).End(xlUp))
    
        wk = Me.ComboBox1.Value
        For Each c In rng
            If c = wk Then
                If myRange Is Nothing Then
                    Set myRange = c
                Else
                    Set myRange = Union(myRange, c)
                End If
            End If
        Next c
        myRange.EntireRow.Copy Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
        On Error GoTo 0
    End Sub
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello RecRic,

    Could you post your workbook so I can better understand what data is where?

    Thanks,
    Leith Ross

  5. #5
    Registered User
    Join Date
    07-17-2007
    Posts
    18
    Thanks for that Roy

    I will post the spreadsheet in the morning Leith as its on my other laptop at the moment

    Roy i will let you know how i get on!

    Thanks guys

  6. #6
    Registered User
    Join Date
    07-17-2007
    Posts
    18
    Hi Rob/Leith

    Rob that code you provided worked a treat, the week number wasnt in Column A but i managed to change the code easily.

    Just one quick follow up, if you dont mind, if i wanted have a list in the combobox of say names instead of a number range what would the code look like

    i.e

    For i = 1 To 52 (As it currently is) would change to something like For i = North,South,East,West ??

    Thanks again chaps

  7. #7
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    You really should start a new Thread, but to load names like that you would use an array

    Me.ComboBox1.List=Array("North","South","East","West")

  8. #8
    Registered User
    Join Date
    07-17-2007
    Posts
    18
    Thanks Very Much Rob

    Have a good xmas :-)

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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