Consolidating list into new worksheet

Dougie C

New Member
Joined
Sep 30, 2010
Messages
1
I have a workbook comprising several worksheets of medical supplies for different parts of the body. To simplify the ordering of these supplies I currently cut and paste the product number from each choice into a separate worksheet. I then print it out to order the items.

I am trying to research a way of perhaps 'ticking off' the items, possibly in a separate column and then combining the worksheets and producing a consolidated list of items ticked. Or should I combine all the worksheets into one big sheet and use the filter function to screen by the ticks.

Each product has a name, product number and body part to which it is fitted so each worksheet is formatted the same i.e. 3 columns.

I would be grateful for the thoughts of the readers / experts.

Many thanks
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi, Something like this might work.
When you select an Item in column "A the entire row is copied to sheet (2). Each time you select a row it's added to the list.

Code:
Private [COLOR=navy]Sub[/COLOR] Worksheet_SelectionChange(ByVal Target [COLOR=navy]As[/COLOR] Range)
[COLOR=navy]Dim[/COLOR] Last [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
Application.EnableEvents = False
    [COLOR=navy]If[/COLOR] Not Intersect(Target, Columns("A:A")) [COLOR=navy]Is[/COLOR] Nothing [COLOR=navy]Then[/COLOR]
        [COLOR=navy]With[/COLOR] Sheets("sheet2")
            Target.EntireRow.Copy .Range("A" & .Range("A" & .rows.count).End(xlUp).Offset(1).row)
        [COLOR=navy]End[/COLOR] With
    [COLOR=navy]End[/COLOR] If
Application.EnableEvents = True
[COLOR=navy]End[/COLOR] [COLOR=navy]Sub[/COLOR]
Regards Mick
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,252
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top