英文:
Google sheet : xlookup date and return with multiple value
问题
我一直在制作一个项目,该项目将查找特定日期,然后返回所有具有该特定日期的单元格值。
例如:
列A(日期):8-7-23 | 8-8-23 | 8-9-23 | 8-7-23 | 8-8-23
列B:apple | orange | grapes | berry | apple
当我使用XLOOKUP查找8-7-23时,返回值应该是apple | berry
这是否可能?
TYIA
一直在尝试使用基本的XLOOKUP,但只返回一个值。
英文:
I've been making a project that will lookup for a specific date then return all cells value with that specific date.
For example:
Column A (date) : 8-7-23 | 8-8-23 | 8-9-23 | 8-7-23 | 8-8-23
Column B : apple | orange | grapes | berry | apple
When I xlookup 8-7-23, return should be apple | berry
is it possible ?
TYIA
Been trying to use the basic xlookup but only 1 value was return.
答案1
得分: 1
=filter(B:B,A:A=D2) 可以尝试使用filter函数:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论