I am trying to find a function that would pull a value from one sheet to another that is dependent on different effective dates.
Basically, I have a sheet with all employees' wages and effective dates. New effective dates show up on different rows.
I have several different sheets that show each grant my organization is funded on and which employees are funded on said grants.
What I want to do is create a formula that pulls the wage that person was making during that time frame from the first sheet to the other sheets.
So far this is what I have:
I am using this formula to pull over the wage:
=IF(HAS({Position Number}, [Position Number]@row), INDEX({Pay Rate}, MATCH([Position Number]@row, {Position Number}, 0)))
An employee would have a row with the percentage they will be funded on that grant for the date ranges. I want to pull over what wage they are making at the time they are funded at that particular percentage.
Here is a screenshot from the sheet with the grant funding. For instance, this person has a new wage effective 1/1/20, but I can only figure out how to pull over the wage from the previous wage effective date.
Any advice?