Pulling data

sturnusek

Board Regular
Joined
Sep 20, 2018
Messages
51
Hi there,

I'm having a little bit of a struggle when I try to think of a solution for my problem.

So, in my sheet I want to assign work to individual people. I have a one master board where I enter all the data, and then each worker has their own tab. I want a formula or something that will be able to pull all this data from the master board to their individual tabs based on a Operator number cell in the tab.

Any ideas how to achieve this?

Thanks
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Perhaps using index/match? If you add html maybe someone here can better assist. Good luck.
 
Upvote 0
.
This macro will review all entries in Col A, then copy/paste the entire row to the appropriate matching sheet.

The sheets must already be created and named for the unique terms in Col A.

Code:
Option Explicit


Sub Copy_Counties()
Application.ScreenUpdating = False
Dim i As Long
Dim Lastrow As Long
On Error GoTo M
Lastrow = Sheets("Master").Cells(Rows.Count, "A").End(xlUp).Row
Dim ans As String
    For i = 2 To Lastrow
    ans = Sheets("Master").Cells(i, 1).Value
        Sheets("Master").Rows(i).Copy Sheets(ans).Rows(Sheets(ans).Cells(Rows.Count, "A").End(xlUp).Row + 1)
    Next
Application.ScreenUpdating = True
Exit Sub
M:
MsgBox "No such sheet as  " & ans & " exist"
Application.ScreenUpdating = True
End Sub


Download sample workbook : https://www.amazon.com/clouddrive/share/woVF0hYm0grRNSivgVUNchhnkPdl1sr1AK7ZLd81bEF
 
Upvote 0

Forum statistics

Threads
1,214,424
Messages
6,119,404
Members
448,893
Latest member
AtariBaby

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