提问人:user19600963 提问时间:11/7/2023 更新时间:11/7/2023 访问量:62
如何组合两个 Excel =filter( ) 函数
How to combine two Excel =filter( ) functions
问:
我需要对表进行两次筛选。
首先,如果“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")
在这种情况下,我不知道如何使用 + 和 *。
答: 暂无答案
评论