How to create Table from Table?

Whistler

Board Regular
Joined
Jul 14, 2011
Messages
61
Hi, I have a Table with few columns, some of them are Date, Name, Shift, Line, and GMP. I would like to create another table from this table.

I mean if I enter "Martin Cotton" in to "C4" cell it will create table with only his entrys.

I dont want to have a pivot Table due to shared workbook.

How I could do that. Any help much apreciated
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi All,

So far I have manage to build something like that:

Code:
Sub Go_Click()
Dim ws As Worksheet
Dim ws2 As Worksheet
Set ws = Worksheets("DataBase")
Set ws2 = Worksheets("Review")
Dim What As String
Dim Where As Range
Set Where = ws.Range("B:B")
Dim Found As Range
What = ws2.Range("C4")
Set Found = Where.Find(What:=What, After:=Range("B2"), LookAt:=xlPart, MatchCase:=False)
If Found Is Nothing Then
        ws2.Range("C7").Value = "Not found"
    Else
        Found.Copy
        
        ws2.Range("D10").PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
    End If

How to select the row or the cell found and 10 more cells to the right?

Thanks for your help
 
Upvote 0

Forum statistics

Threads
1,224,542
Messages
6,179,421
Members
452,913
Latest member
JWD210

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