简体   繁体   English

检查单元格与其他多个单元格,Output 匹配“,”分隔

[英]Check cell against multiple others, Output Matches “,” Delimited

I have the following Data我有以下数据

SKU Cell (M5) 
SKU Check Range(Table 1, Column J2:J8000) 
Model Range(F2:F8000)

I need to have the following logic converted to the formula for it我需要将以下逻辑转换为它的公式

IF SKU = SKU Check, Output all models that match from Model Column with ", " delimiters for multiple matches IF SKU = SKU 检查,Output 与 Model 列匹配的所有型号,以“,”分隔符进行多个匹配

I hope this makes sense Any help on this would be incredibly appreciated我希望这是有道理的

With Office 365 use:使用 Office 365 使用:

=TEXTJOIN(", ",TRUE,FILTER(F2:F8000,J2:J8000 = M5,""))

Without O365, vba will be needed.如果没有 O365,则需要 vba。 There are many UDF that mimic TEXTJOIN in which one can use an Array IF() to return the correct values.有许多模仿 TEXTJOIN 的 UDF,其中可以使用 Array IF() 返回正确的值。 Here is one:这是一个:

VLOOKUP with multiple criteria returning values in one cell VLOOKUP 具有多个标准,在一个单元格中返回值

Or this one that does TEXTJOINIFS:或者这个做 TEXTJOINIFS 的:

Merge values of column B based on common values on column A 根据 A 列的常用值合并 B 列的值

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Excel:检查列中单个单元格的部分匹配 - Excel: Check for partial matches from column against single cell 检查一个单元格是否匹配多个条件 - Check whether a cell matches multiple criteria Excel检查单元格是否与其他多个单元格匹配 - Excel check cell for string match against multiple other cells 对于一列中的每个单元格,检查下一列中的多个匹配项,然后突出显示它们 - For each cell in a column, check multiple matches in the next column and then highlight them 检查一个单元格是否匹配另一个单元格 - Check if one Cell Matches Another 使用 VBA DateDiff 比较多个日期,输出差异,然后将输出与另一个单元格进行比较 - Using VBA DateDiff to compare multiple Dates, output the difference and then compare output against another cell 多个索引的 Sumif 与一个值匹配 - Sumif of multiple Index matches against one value 如果单元格与范围中的任何其他单元格匹配,则将内容复制到“结果”表 - If cell matches any others in range copy content to “results” sheet 如何在一个单元格中分割定界数据并针对分离出的每个定界数据重复相邻的单元格 - How do I split out delimited data in one cell and repeat the adjacent cell against each item of delimited data separated out VBA根据单元格验证检查值 - VBA to check value against cell validations
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM