Sorry for all the nooby questions.
I have 2 spreadsheets:
I basically need a formula on the timesheet spreadsheet that will look at the payrate spreadsheet and import the data across.
Example:
Is this even possible?
Thanks again!!!
You mentioned
Name Spreadsheet -
(A1)
Beth Hawkins(B1)
£120Timesheet Spreadsheet - the name Beth Hawkins is inputted into cell
C9
, I need a formula in cellO9
to then go into the name spreadsheet and find the payrate that Beth is on, and automatically input that when the name is typed
You can use the following formula in cell O9
:
=IFERROR(VLOOKUP(C9,IMPORTRANGE("xxxxxxx","Name!A1:B"),2,0))
(where xxxxxxx
is the Name Spreadsheet ID)
Functions used: