在 Excel 中创建条件范围、修改列和高级筛选

Create Criteria range, modify columns and Advanced Filtering in Excel

我正在努力为 Excel 中的数据库创建合适的标准范围。这个问题对我来说很复杂。这就是问题的样子:

Assign range name called database to range A14:J26. Assign range name called Criteria to the range A7:J9. (This part is done).
Create column labels for the Criteria range and replace the Edition Size with a second Release Date column label. Set the following conditions in the Criteria range:

- Sold-out limited-edition canvases released after 1/1/2000 and before 12/31/2003
- Sold-out limited-edition prints released after 1/1/2000 and before 12/31/2003

Create an advanced filter using the database list and Criteria range. Filter everything in place.

这就是问题所在。 粗体斜体 部分是最让我困惑的部分。我真的不知道如何实现这一目标。

参见下面的sheet:

https://docs.google.com/spreadsheets/d/1xjZ62WK7gqbo58JBCfwYaMV7xLZkhBMPiUQsGdt7WUo/edit?usp=sharing


编辑

我已经从 数据库记录 中复制了所有列名并将它们粘贴到条件范围中。然后我在K7中添加了如下公式:

=AND(OR(F15>E, F15<F), OR(D15="Limited Edition Print", D15="Limited Edition Canvas"))

但不幸的是,这并没有按照我的意愿过滤我的结果。有什么想法吗?

条件区域要求 AND 条件的值位于同一行,OR 条件的值位于不同行。

要获得日期范围,您必须将两个日期放在同一行,这样未使用的列之一将用于制作第二个发布日期条件过滤器。

要在 Type 是限量版印刷版或限量版 Canvas 时获得相同的结果,请将这些条目放在不同的行中。