Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Excel 工作簿中有两个选项卡。
名为 Sheet2 和一个名为 $。
我想匹配单元格 B2(Sheet2)中的单元格内容,这是一个产品 ID,如果单元格 A2:A1800 则在范围内的选项卡($)中。如果有匹配项,我想在匹配单元格右侧的选项卡 $ 上返回相应单元格的值(这是产品 ID 的价格)
理想情况下,我想使用 vlookup 或函数
=VLOOKUP(B2,'$'!A2:B1800,2,FALSE)
如果您希望单元格位于右侧,则必须在范围中包含 B 列。