Viewing 5 posts - 1 through 5 (of 5 total)
This is a great tip and I will use this in the future for sure! Thank you!
May 2, 2023 at 6:22 pm
Thank you this worked out great!
May 2, 2023 at 5:59 pm
Yes I basically want the most recent price or last sales price, which would be the Max Start Date.
Thank you.
May 2, 2023 at 3:43 pm
My end goal is to get the maximum PRM_StartDate for each Item ID.
For example:
SELECT IMA_ItemID, IMA_Price,PRD_UnitSalesPrice,PRM_StartDate FROM Item
LEFT JOIN PriceMatrix ON PRM_IMA_RecordID = IMA_RecordID
INNER JOIN PriceMatrixDetail ON PRD_PRM_RecordID = PRM_RecordID
WHERE...
May 2, 2023 at 3:10 pm
Thank you. I was able to import my flat file (CSV) to a table called CSVTest. This CSV had the ItemID column and now an ItemStatusCode column with the value...
March 24, 2022 at 2:44 pm
Viewing 5 posts - 1 through 5 (of 5 total)