#19707
Yutaka Emura
Keymaster

Hello LifeTimer,

You can use multiple levels of “Filter” with a macro.

For example, if you want to filter with “a” first, and then filter with “b”, you would write:


document.Filter("a", -1, eeFindContinue);
document.Filter("b", -1, 0);

The “eeFindContinue” keyword means the filter operation will continue to the next filter.

Thanks!