Hello,
I have a file A with product ID's and the date they were sold. I have another file B with the historical cost of these products and the dates the cost was changed/updated.
I need to find the pricing for the products ID's in file A on the date they were sold (also in File A). Is there a way to use the data from File B (the dates will not match up exactly) to find the historical pricing for File A?
EX:
File A has a product ID of 1234 and was sold on 10/01/2018
File B has product ID 1234 on two lines. Line 1 has a price of $4.25 and a date of 04/01/2018 and line 2 has a price of $4.50 with a date of 12/31/2018.
This means that the price of product 1234 was $4.25 from 04/01/2018 through 12/30/2018. On 12/31/2018 the price changed to $4.50.
How can I use these two files to match the date on File A to the time range on File B and return the correct price?
Please let me know if you need additional information
I have a file A with product ID's and the date they were sold. I have another file B with the historical cost of these products and the dates the cost was changed/updated.
I need to find the pricing for the products ID's in file A on the date they were sold (also in File A). Is there a way to use the data from File B (the dates will not match up exactly) to find the historical pricing for File A?
EX:
File A has a product ID of 1234 and was sold on 10/01/2018
File B has product ID 1234 on two lines. Line 1 has a price of $4.25 and a date of 04/01/2018 and line 2 has a price of $4.50 with a date of 12/31/2018.
This means that the price of product 1234 was $4.25 from 04/01/2018 through 12/30/2018. On 12/31/2018 the price changed to $4.50.
How can I use these two files to match the date on File A to the time range on File B and return the correct price?
Please let me know if you need additional information