如何组合两个 Excel =filter( ) 函数

How to combine two Excel =filter( ) functions

提问人:user19600963 提问时间:11/7/2023 更新时间:11/7/2023 访问量:62

问:

我需要对表进行两次筛选。

首先,如果“Tour-Nr.”等于特定值,我想排除行:

=FILTER(Data, ISERROR(MATCH(Data[Tour-Nr.], B3:B8, 0)) * ISERROR(MATCH(Data[Unt. Nr.], D3:D8, 0)))

其次,我想像这样过滤

=IFERROR(FILTER(
Data, (Data[POD] = "No") * (ISBLANK(Data[Abfahrt Beladestelle Ist (IOP)])) * (ISBLANK(Data[Abfahrt Entladestelle Ist (IOD)]))
+ (Data[POD] = "No") * (ISBLANK(Data[Abfahrt Beladestelle Ist (IOP)])) + (Data[POD] = "No") * (ISBLANK(Data[Abfahrt Entladestelle Ist (IOD)]))
+ (Data[POD] = "No") + (Data[POD] = "Yes") * (ISBLANK(Data[Abfahrt Beladestelle Ist (IOP)]))
+ (Data[POD] = "Yes") * (ISBLANK(Data[Abfahrt Beladestelle Ist (IOP)])) * (ISBLANK(Data[Abfahrt Entladestelle Ist (IOD)]))
+ (Data[POD] = "Yes") * (ISBLANK(Data[Abfahrt Entladestelle Ist (IOD)]))),
"No Tours Available")

在这种情况下,我不知道如何使用 + 和 *。

公式 Excel-2007

评论

1赞 user11222393 11/7/2023
首先,FILTER公式在Excel 2007中不可用,正确的标签。第二,你的问题是什么?
1赞 Ron Rosenfeld 11/8/2023
我没有看到可复制的数据样本,也没有您想要的输出的屏幕截图。请阅读如何创建最小、完整和可验证的示例

答: 暂无答案