+ Reply to Thread
Results 1 to 8 of 8

Work Through a Database and Copy unique Values Q

  1. #1
    John
    Guest

    Work Through a Database and Copy unique Values Q

    I've got the following database details in a sheet called Database3, that
    shows employee numbers and dates that they have clocked in

    Col A Col B

    1 11/04/05
    1 12/04/05
    1 13/04/05
    2 12/04/05
    2 14/04/05
    3 11/04/05

    I'm looking for a piece of code that will copy only the employee number to a
    ceratin cell in worksheet "reports". I therefore need the code to work
    through the detail above and everytime it finds a "new" employee number to
    copy this 12 cells below where the first cell was copied in "Reports C11".
    Thus what I would expect to see within the Reports worksheet in the
    appropriate cells would be

    C11 = 1
    C23 = 2
    C35 = 3

    It would finally get to the end of the database at then just stop

    Hope someone can assist

    Thanks



  2. #2
    Debra Dalgleish
    Guest

    Re: Work Through a Database and Copy unique Values Q

    You could filter the data to another sheet, then insert blank rows. The
    following code takes data from sheet1 and moves the numbers to sheet2:

    '===========================
    Sub EmployeeNumbers()
    Dim lRow As Long
    Dim lLastRow As Long
    Dim rng As Range
    Dim ws2 As Worksheet
    Set ws2 = Sheets("Sheet2")

    Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    CopyToRange:=ws2.Range("A1"), Unique:=True

    lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    lRow = 2

    For lRow = lLastRow To 2 Step -1
    ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    1)).EntireRow.Insert Shift:=xlDown
    Next lRow

    ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp

    End Sub
    '==========================

    John wrote:
    > I've got the following database details in a sheet called Database3, that
    > shows employee numbers and dates that they have clocked in
    >
    > Col A Col B
    >
    > 1 11/04/05
    > 1 12/04/05
    > 1 13/04/05
    > 2 12/04/05
    > 2 14/04/05
    > 3 11/04/05
    >
    > I'm looking for a piece of code that will copy only the employee number to a
    > ceratin cell in worksheet "reports". I therefore need the code to work
    > through the detail above and everytime it finds a "new" employee number to
    > copy this 12 cells below where the first cell was copied in "Reports C11".
    > Thus what I would expect to see within the Reports worksheet in the
    > appropriate cells would be
    >
    > C11 = 1
    > C23 = 2
    > C35 = 3
    >
    > It would finally get to the end of the database at then just stop
    >
    > Hope someone can assist
    >
    > Thanks
    >
    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  3. #3
    John
    Guest

    Re: Work Through a Database and Copy unique Values Q

    Thanks Debra, that will work


    "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    news:4269B063.40600@contexturesXSPAM.com...
    > You could filter the data to another sheet, then insert blank rows. The
    > following code takes data from sheet1 and moves the numbers to sheet2:
    >
    > '===========================
    > Sub EmployeeNumbers()
    > Dim lRow As Long
    > Dim lLastRow As Long
    > Dim rng As Range
    > Dim ws2 As Worksheet
    > Set ws2 = Sheets("Sheet2")
    >
    > Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    > CopyToRange:=ws2.Range("A1"), Unique:=True
    >
    > lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    > Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    > lRow = 2
    >
    > For lRow = lLastRow To 2 Step -1
    > ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    > 1)).EntireRow.Insert Shift:=xlDown
    > Next lRow
    >
    > ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp
    >
    > End Sub
    > '==========================
    >
    > John wrote:
    >> I've got the following database details in a sheet called Database3, that
    >> shows employee numbers and dates that they have clocked in
    >>
    >> Col A Col B
    >>
    >> 1 11/04/05
    >> 1 12/04/05
    >> 1 13/04/05
    >> 2 12/04/05
    >> 2 14/04/05
    >> 3 11/04/05
    >>
    >> I'm looking for a piece of code that will copy only the employee number
    >> to a ceratin cell in worksheet "reports". I therefore need the code to
    >> work through the detail above and everytime it finds a "new" employee
    >> number to copy this 12 cells below where the first cell was copied in
    >> "Reports C11". Thus what I would expect to see within the Reports
    >> worksheet in the appropriate cells would be
    >>
    >> C11 = 1
    >> C23 = 2
    >> C35 = 3
    >>
    >> It would finally get to the end of the database at then just stop
    >>
    >> Hope someone can assist
    >>
    >> Thanks

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >




  4. #4
    John
    Guest

    Re: Work Through a Database and Copy unique Values Q

    I thought that would work Debra, problem being is that my worksheet 2 has a
    defined layout, so I can't insert rows in it. I could I suppose just use a
    simple =Ref in the appropriate cells.


    "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    news:4269B063.40600@contexturesXSPAM.com...
    > You could filter the data to another sheet, then insert blank rows. The
    > following code takes data from sheet1 and moves the numbers to sheet2:
    >
    > '===========================
    > Sub EmployeeNumbers()
    > Dim lRow As Long
    > Dim lLastRow As Long
    > Dim rng As Range
    > Dim ws2 As Worksheet
    > Set ws2 = Sheets("Sheet2")
    >
    > Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    > CopyToRange:=ws2.Range("A1"), Unique:=True
    >
    > lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    > Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    > lRow = 2
    >
    > For lRow = lLastRow To 2 Step -1
    > ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    > 1)).EntireRow.Insert Shift:=xlDown
    > Next lRow
    >
    > ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp
    >
    > End Sub
    > '==========================
    >
    > John wrote:
    >> I've got the following database details in a sheet called Database3, that
    >> shows employee numbers and dates that they have clocked in
    >>
    >> Col A Col B
    >>
    >> 1 11/04/05
    >> 1 12/04/05
    >> 1 13/04/05
    >> 2 12/04/05
    >> 2 14/04/05
    >> 3 11/04/05
    >>
    >> I'm looking for a piece of code that will copy only the employee number
    >> to a ceratin cell in worksheet "reports". I therefore need the code to
    >> work through the detail above and everytime it finds a "new" employee
    >> number to copy this 12 cells below where the first cell was copied in
    >> "Reports C11". Thus what I would expect to see within the Reports
    >> worksheet in the appropriate cells would be
    >>
    >> C11 = 1
    >> C23 = 2
    >> C35 = 3
    >>
    >> It would finally get to the end of the database at then just stop
    >>
    >> Hope someone can assist
    >>
    >> Thanks

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >




  5. #5
    Debra Dalgleish
    Guest

    Re: Work Through a Database and Copy unique Values Q

    Thange this section, so it doesn't insert an entire row:

    '===========
    For lRow = lLastRow To 2 Step -1
    ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10, 1)) _
    .Insert Shift:=xlDown
    Next lRow
    '==============

    John wrote:
    > I thought that would work Debra, problem being is that my worksheet 2 has a
    > defined layout, so I can't insert rows in it. I could I suppose just use a
    > simple =Ref in the appropriate cells.
    >
    >
    > "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    > news:4269B063.40600@contexturesXSPAM.com...
    >
    >>You could filter the data to another sheet, then insert blank rows. The
    >>following code takes data from sheet1 and moves the numbers to sheet2:
    >>
    >>'===========================
    >>Sub EmployeeNumbers()
    >>Dim lRow As Long
    >>Dim lLastRow As Long
    >>Dim rng As Range
    >>Dim ws2 As Worksheet
    >>Set ws2 = Sheets("Sheet2")
    >>
    >>Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    >> CopyToRange:=ws2.Range("A1"), Unique:=True
    >>
    >>lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    >>Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    >>lRow = 2
    >>
    >>For lRow = lLastRow To 2 Step -1
    >> ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    >>1)).EntireRow.Insert Shift:=xlDown
    >>Next lRow
    >>
    >>ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp
    >>
    >>End Sub
    >>'==========================
    >>
    >>John wrote:
    >>
    >>>I've got the following database details in a sheet called Database3, that
    >>>shows employee numbers and dates that they have clocked in
    >>>
    >>>Col A Col B
    >>>
    >>>1 11/04/05
    >>>1 12/04/05
    >>>1 13/04/05
    >>>2 12/04/05
    >>>2 14/04/05
    >>>3 11/04/05
    >>>
    >>>I'm looking for a piece of code that will copy only the employee number
    >>>to a ceratin cell in worksheet "reports". I therefore need the code to
    >>>work through the detail above and everytime it finds a "new" employee
    >>>number to copy this 12 cells below where the first cell was copied in
    >>>"Reports C11". Thus what I would expect to see within the Reports
    >>>worksheet in the appropriate cells would be
    >>>
    >>>C11 = 1
    >>>C23 = 2
    >>>C35 = 3
    >>>
    >>>It would finally get to the end of the database at then just stop
    >>>
    >>>Hope someone can assist
    >>>
    >>>Thanks

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>

    >
    >
    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  6. #6
    John
    Guest

    Re: Work Through a Database and Copy unique Values Q

    Thanks Debra

    I've tried the =Ref path but problem with inserting on sheet2 is that the
    relatives still carry through on the source sheet, thus even holding the
    cell references on Sheet1 doesn't work

    Think I need something that will just filter with unique values and then
    just use a =Ref, without the insertio of rows


    "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    news:426A1FFB.3090909@contexturesXSPAM.com...
    > Thange this section, so it doesn't insert an entire row:
    >
    > '===========
    > For lRow = lLastRow To 2 Step -1
    > ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10, 1)) _
    > .Insert Shift:=xlDown
    > Next lRow
    > '==============
    >
    > John wrote:
    >> I thought that would work Debra, problem being is that my worksheet 2 has
    >> a defined layout, so I can't insert rows in it. I could I suppose just
    >> use a simple =Ref in the appropriate cells.
    >>
    >>
    >> "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    >> news:4269B063.40600@contexturesXSPAM.com...
    >>
    >>>You could filter the data to another sheet, then insert blank rows. The
    >>>following code takes data from sheet1 and moves the numbers to sheet2:
    >>>
    >>>'===========================
    >>>Sub EmployeeNumbers()
    >>>Dim lRow As Long
    >>>Dim lLastRow As Long
    >>>Dim rng As Range
    >>>Dim ws2 As Worksheet
    >>>Set ws2 = Sheets("Sheet2")
    >>>
    >>>Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    >>> CopyToRange:=ws2.Range("A1"), Unique:=True
    >>>
    >>>lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    >>>Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    >>>lRow = 2
    >>>
    >>>For lRow = lLastRow To 2 Step -1
    >>> ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    >>> 1)).EntireRow.Insert Shift:=xlDown
    >>>Next lRow
    >>>
    >>>ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp
    >>>
    >>>End Sub
    >>>'==========================
    >>>
    >>>John wrote:
    >>>
    >>>>I've got the following database details in a sheet called Database3,
    >>>>that shows employee numbers and dates that they have clocked in
    >>>>
    >>>>Col A Col B
    >>>>
    >>>>1 11/04/05
    >>>>1 12/04/05
    >>>>1 13/04/05
    >>>>2 12/04/05
    >>>>2 14/04/05
    >>>>3 11/04/05
    >>>>
    >>>>I'm looking for a piece of code that will copy only the employee number
    >>>>to a ceratin cell in worksheet "reports". I therefore need the code to
    >>>>work through the detail above and everytime it finds a "new" employee
    >>>>number to copy this 12 cells below where the first cell was copied in
    >>>>"Reports C11". Thus what I would expect to see within the Reports
    >>>>worksheet in the appropriate cells would be
    >>>>
    >>>>C11 = 1
    >>>>C23 = 2
    >>>>C35 = 3
    >>>>
    >>>>It would finally get to the end of the database at then just stop
    >>>>
    >>>>Hope someone can assist
    >>>>
    >>>>Thanks
    >>>
    >>>
    >>>--
    >>>Debra Dalgleish
    >>>Excel FAQ, Tips & Book List
    >>>http://www.contextures.com/tiptech.html
    >>>

    >>
    >>
    >>

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >




  7. #7
    Debra Dalgleish
    Guest

    Re: Work Through a Database and Copy unique Values Q

    You didn't mention the =Ref in your first message. What are you trying
    to link to?

    John wrote:
    > Thanks Debra
    >
    > I've tried the =Ref path but problem with inserting on sheet2 is that the
    > relatives still carry through on the source sheet, thus even holding the
    > cell references on Sheet1 doesn't work
    >
    > Think I need something that will just filter with unique values and then
    > just use a =Ref, without the insertio of rows
    >
    >
    > "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    > news:426A1FFB.3090909@contexturesXSPAM.com...
    >
    >>Thange this section, so it doesn't insert an entire row:
    >>
    >>'===========
    >>For lRow = lLastRow To 2 Step -1
    >> ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10, 1)) _
    >> .Insert Shift:=xlDown
    >>Next lRow
    >>'==============
    >>
    >>John wrote:
    >>
    >>>I thought that would work Debra, problem being is that my worksheet 2 has
    >>>a defined layout, so I can't insert rows in it. I could I suppose just
    >>>use a simple =Ref in the appropriate cells.
    >>>
    >>>
    >>>"Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    >>>news:4269B063.40600@contexturesXSPAM.com...
    >>>
    >>>
    >>>>You could filter the data to another sheet, then insert blank rows. The
    >>>>following code takes data from sheet1 and moves the numbers to sheet2:
    >>>>
    >>>>'===========================
    >>>>Sub EmployeeNumbers()
    >>>>Dim lRow As Long
    >>>>Dim lLastRow As Long
    >>>>Dim rng As Range
    >>>>Dim ws2 As Worksheet
    >>>>Set ws2 = Sheets("Sheet2")
    >>>>
    >>>>Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    >>>> CopyToRange:=ws2.Range("A1"), Unique:=True
    >>>>
    >>>>lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    >>>>Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    >>>>lRow = 2
    >>>>
    >>>>For lRow = lLastRow To 2 Step -1
    >>>> ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    >>>>1)).EntireRow.Insert Shift:=xlDown
    >>>>Next lRow
    >>>>
    >>>>ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp
    >>>>
    >>>>End Sub
    >>>>'==========================
    >>>>
    >>>>John wrote:
    >>>>
    >>>>
    >>>>>I've got the following database details in a sheet called Database3,
    >>>>>that shows employee numbers and dates that they have clocked in
    >>>>>
    >>>>>Col A Col B
    >>>>>
    >>>>>1 11/04/05
    >>>>>1 12/04/05
    >>>>>1 13/04/05
    >>>>>2 12/04/05
    >>>>>2 14/04/05
    >>>>>3 11/04/05
    >>>>>
    >>>>>I'm looking for a piece of code that will copy only the employee number
    >>>>>to a ceratin cell in worksheet "reports". I therefore need the code to
    >>>>>work through the detail above and everytime it finds a "new" employee
    >>>>>number to copy this 12 cells below where the first cell was copied in
    >>>>>"Reports C11". Thus what I would expect to see within the Reports
    >>>>>worksheet in the appropriate cells would be
    >>>>>
    >>>>>C11 = 1
    >>>>>C23 = 2
    >>>>>C35 = 3
    >>>>>
    >>>>>It would finally get to the end of the database at then just stop
    >>>>>
    >>>>>Hope someone can assist
    >>>>>
    >>>>>Thanks
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>
    >>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>

    >
    >
    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  8. #8
    John
    Guest

    Re: Work Through a Database and Copy unique Values Q

    Debra

    Did a workaround, just copied - paste special values the filtered values
    into the range I required. Not sure if its efficient code but it works

    Thanks


    "John" <r.@9999yahoo.co.uk> wrote in message
    news:Aqpae.52077$Z14.41910@news.indigo.ie...
    > Thanks Debra
    >
    > I've tried the =Ref path but problem with inserting on sheet2 is that the
    > relatives still carry through on the source sheet, thus even holding the
    > cell references on Sheet1 doesn't work
    >
    > Think I need something that will just filter with unique values and then
    > just use a =Ref, without the insertio of rows
    >
    >
    > "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    > news:426A1FFB.3090909@contexturesXSPAM.com...
    >> Thange this section, so it doesn't insert an entire row:
    >>
    >> '===========
    >> For lRow = lLastRow To 2 Step -1
    >> ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10, 1)) _
    >> .Insert Shift:=xlDown
    >> Next lRow
    >> '==============
    >>
    >> John wrote:
    >>> I thought that would work Debra, problem being is that my worksheet 2
    >>> has a defined layout, so I can't insert rows in it. I could I suppose
    >>> just use a simple =Ref in the appropriate cells.
    >>>
    >>>
    >>> "Debra Dalgleish" <dsd@contexturesXSPAM.com> wrote in message
    >>> news:4269B063.40600@contexturesXSPAM.com...
    >>>
    >>>>You could filter the data to another sheet, then insert blank rows. The
    >>>>following code takes data from sheet1 and moves the numbers to sheet2:
    >>>>
    >>>>'===========================
    >>>>Sub EmployeeNumbers()
    >>>>Dim lRow As Long
    >>>>Dim lLastRow As Long
    >>>>Dim rng As Range
    >>>>Dim ws2 As Worksheet
    >>>>Set ws2 = Sheets("Sheet2")
    >>>>
    >>>>Sheets("Sheet1").Columns("A:A").AdvancedFilter Action:=xlFilterCopy, _
    >>>> CopyToRange:=ws2.Range("A1"), Unique:=True
    >>>>
    >>>>lLastRow = ws2.Cells(Rows.Count, 1).End(xlUp).Row
    >>>>Set rng = ws2.Range(ws2.Cells(2, 1), ws2.Cells(lLastRow, 1))
    >>>>lRow = 2
    >>>>
    >>>>For lRow = lLastRow To 2 Step -1
    >>>> ws2.Range(ws2.Cells(lRow, 1), ws2.Cells(lRow + 10,
    >>>> 1)).EntireRow.Insert Shift:=xlDown
    >>>>Next lRow
    >>>>
    >>>>ws2.Range(ws2.Cells(1, 1), ws2.Cells(2, 1)).Delete Shift:=xlUp
    >>>>
    >>>>End Sub
    >>>>'==========================
    >>>>
    >>>>John wrote:
    >>>>
    >>>>>I've got the following database details in a sheet called Database3,
    >>>>>that shows employee numbers and dates that they have clocked in
    >>>>>
    >>>>>Col A Col B
    >>>>>
    >>>>>1 11/04/05
    >>>>>1 12/04/05
    >>>>>1 13/04/05
    >>>>>2 12/04/05
    >>>>>2 14/04/05
    >>>>>3 11/04/05
    >>>>>
    >>>>>I'm looking for a piece of code that will copy only the employee number
    >>>>>to a ceratin cell in worksheet "reports". I therefore need the code to
    >>>>>work through the detail above and everytime it finds a "new" employee
    >>>>>number to copy this 12 cells below where the first cell was copied in
    >>>>>"Reports C11". Thus what I would expect to see within the Reports
    >>>>>worksheet in the appropriate cells would be
    >>>>>
    >>>>>C11 = 1
    >>>>>C23 = 2
    >>>>>C35 = 3
    >>>>>
    >>>>>It would finally get to the end of the database at then just stop
    >>>>>
    >>>>>Hope someone can assist
    >>>>>
    >>>>>Thanks
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>
    >>>
    >>>

    >>
    >>
    >> --
    >> Debra Dalgleish
    >> Excel FAQ, Tips & Book List
    >> http://www.contextures.com/tiptech.html
    >>

    >
    >




+ 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