Found a solution to this. It may not be optimal, but it works.
First, I have to list all of the products and their Bins. This query is named "SKUsWithBin":
SELECT CycleCounts.CC_ID, CycleCounts.CC_Date, CycleCounts.SKU, CycleCounts.PickLoc, Left([PickLoc],3) AS Bin
FROM CycleCounts
WHERE...