最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

google sheets - I am trying to find duplicates from a separate database - Stack Overflow

programmeradmin5浏览0评论

I am trying to find the order number in a separate database - if the order number is repeated in this separate database I would like it to return all duplicates, i.e. all data that is assigned to the order number. The order numbers on the left are dynamically downloaded from another place and changed.

I stopped dragging the formula: =FILTER($I$28:$K$48;isnumber(search(B28;$I$28:$I$48)))

but if it finds duplicates (i.e. the order number appears several times in a separate database) there is no place to return the data and #REF! pops up

I am trying to find the order number in a separate database - if the order number is repeated in this separate database I would like it to return all duplicates, i.e. all data that is assigned to the order number. The order numbers on the left are dynamically downloaded from another place and changed.

I stopped dragging the formula: =FILTER($I$28:$K$48;isnumber(search(B28;$I$28:$I$48)))

but if it finds duplicates (i.e. the order number appears several times in a separate database) there is no place to return the data and #REF! pops up

Share Improve this question edited Apr 8 at 3:20 Patsytalk 1,2561 gold badge1 silver badge15 bronze badges asked Mar 21 at 0:35 AgnieszkaAgnieszka 11 1
  • Make sure to provide input and expected output as plain text table in the question. Check my answer or other options to create a table easily, which are easy to copy/paste. Avoid sharing links like spreadsheets, which make the question useless for others or images, which are hard to copy. Also, note that your email address can also be accessed by the public, if you share Google files. – TheMaster Commented Mar 21 at 12:03
Add a comment  | 

1 Answer 1

Reset to default 2

You can use TOROW or JOIN around your filter.

=TOROW(FILTER($I$28:$K$48;ISNUMBER(SEARCH(B28;$I$28:$I$48))))
=JOIN(", ";FILTER($I$28:$K$48;ISNUMBER(SEARCH(B28;$I$28:$I$48))))
发布评论

评论列表(0)

  1. 暂无评论