我需要 Excel 从表 A 中获取用户 ID,将其与表 B 匹配,并仅返回最近的 SaleDate,并忽略较旧的 SaleDate 条目。此外,我还需要返回表 B 中相应的“项目”。我通常使用 Index 和 Match,但它只在表 B 中的第一个实例处停止。我搜索了很多不同的解决方案,但没有一个适合我的具体情况。如果可能的话,我只想使用公式来做到这一点。
(old) Table A
|userID| company | LastSaleDate | Item
______________________________________________
|1 | catworld | |
|2 | fishworld| |
|3 | dogworld | |
Table B
|userID| company | SaleDate | Item |
________________________________________
|1 | catworld | 01/01/2005 | toy |
|1 | catworld | 01/03/2017 | leash |
|2 | fishworld| 05/05/2019 | tank |
|3 | dogworld | 02/01/2005 | food |
|3 | dogworld | 02/03/2017 | toy |
(new) Table A
|userID| company | LastSaleDate | Item
______________________________________________
|1 | catworld | 01/03/2017 | leash
|2 | fishworld| 05/05/2019 | tank
|3 | dogworld | 02/03/2017 | toy
任何帮助或想法都将不胜感激。谢谢。