I have a few sheets with data in columns.
I want to bring that data into a new worksheet which has specific fields for
the data to go into.
I need to do this repetitive procedure for lots of employees (each one has a
seperate employee number) I thouhg tif I could get it set up to bring in
data from cells in the master sheets I could then just change the employee
number lookup reference and then it would bring in all the data for that
employee.
Sheet A Gross Pay
smith 12.00
jones 234.98
williams 89.27
brown 112.83
Sheet B Tax
smith 14.00
jones 12.00
williams 4.50
brown 4.27
Sheet C NI
smith 2.40
jones 4,56
williams 7.00
brown 3.46
Sheet D
Gross Pay xx
Tax xx
NI xx
I want to have a sheet D for each employee.
You get my jist?
> Steven --
>
[quoted text clipped - 23 lines]
>>
>> Thanks
pdberger - 09 Apr 2008 19:43 GMT
Steven
I think you want to use LOOKUP functions. Excel has good help, but here's a
start. If Sheet A holds gross pay, Sheet B holds tax, then Sheet D would
look like:
A B C
1 Name Pay Tax
2 Smith
Cell B2: =VLOOKUP(A2,'Sheet1'!$A$2:$B$100,2,FALSE)
Cell C2: =VLOOKUP(A2,'Sheet2'!$A$2:$B$100,2,FALSE)
you'd adjust the A2:B100 range to whatever is the employee list.
HTH
> I have a few sheets with data in columns.
>
[quoted text clipped - 62 lines]
> >>
> >> Thanks