Only pull through some information

Irwell1878

New Member
Joined
May 4, 2012
Messages
42
So I have

TAB 1
This contains a load of data broken down by worker. (I don't know how many lines each worker has)

On Tab 2 I want it to pull that data through only for a certain few workers.

What would be the best method of doing this?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Irwell1878,

So that we can get it right on the first try, can we see what your actual raw data workbook/worksheets look like, and, on another worksheet what the results manually formatted by you, should look like?

You can post your workbook/worksheets to the following free site (sensitive data changed), mark the workbook for sharing, and, provide us with a link to your workbook:

https://dropbox.com

Try using https://app.box.com/files (Free file sharing) to post an example file.

Once you have created the uploaded file, copy the address line and then paste it back here!!
 
Upvote 0
Irwell1878,

So that we can get it right on the first try, can we see what your actual raw data workbook/worksheets look like, and, on another worksheet what the results manually formatted by you, should look like?

You can post your workbook/worksheets to the following free site (sensitive data changed), mark the workbook for sharing, and, provide us with a link to your workbook:

https://dropbox.com

Try using https://app.box.com/files (Free file sharing) to post an example file.

Once you have created the uploaded file, copy the address line and then paste it back here!!

Thanks,

https://app.box.com/s/0ehq2m3lpov74imoh71fqdxym2s6ze7x

Hopefully that works.
 
Upvote 0
How about
Code:
Sub FltrSome()
   Dim ary As Variant
   
   With Sheets("Summary")
      ary = .Range("J4", .Range("J" & Rows.Count).End(xlUp))
   End With
   With Sheets("Extract")
      If .AutoFilterMode Then .AutoFilterMode = False
      .Range("A1:F1").AutoFilter 1, ary, xlFilterValues
      Intersect(.AutoFilter.Range.Offset(1), .Range("A:B,E:F")).Copy Sheets("Summary").Range("A4")
      .AutoFilterMode = False
   End With
End Sub
 
Upvote 0
It can be done without VBA, but I don't know how.
Hopefully one of the formula folk will pitch in.
 
Upvote 0
AdvancedFilter has a copy to other location feature that would help. The destination sheet must be active when AdvancedFilter is activated.
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,432
Members
448,961
Latest member
nzskater

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