Can you count the sum of two searches?

Hello

I’m making a list of the tiddlers I have on my wiki and I have a problem. I would like Tw to give me the sum of tiddlers both created by me, visible, and hidden tiddlers that have a certain string in their name.
Separately I do it perfectly but when I try to do it with both conditions I can’t get it to work.

Do you know if it is possible to do it and if so how?

This is the code I use:

<$list filter="[[creator[Xns]!is[system]+is[system]search:title[tic]]count[]]"><></$list>

or

<$count filter="[creator[Xns]!is[system]+[is[system]search:title[tic]]"/>

Greetings and thanks.

Try this

[[creator[Xns]!is[system] [is[system]search:title[tic]] +[count[]]

1 Like

That’s speed.
It’s what I was looking for and it works wonderfully.

In case it helps anyone, these are the two ways I can do the sum.

<$count filter="[creator[Xns]!is[system]] [is[system]search:title[tic]]"/>

+++

<$list filter="[creator[Xns]!is[system]] [is[system]search:title[tic]] +[count[]]"><></$list>

Thank you very much Tones.