Hello,
I have tiddlers tagged with "Person" for contacts. For each conversation, I
created a new tiddler with the content of the conversation along with the
field "contact", in which the Person is mentioned. The conversation tiddler
is tagged "Conversation".
Now I'd like to create a table, which shows me the People I talked to with
the amount of conversations I had with them. Sometimes, the conversation is
with more than one person, so I write two names in the contact-field, like
"PersonOne PersonTwo". I understood that separating those, I should use the
enlist-operator.
I tried the following, but I cannot find out, what to write in the space
marked with ????. If I try to enter one Persons name manually, the correct
count shows up in all rows, as expected. Somehow, I need to reference the
currentTiddler, but I don't know how.
Could someone point me in the right direction?
Many Thanks!
JJ
<table>
<tr>
<th>Person</th>
<th>Conversation Count</th>
</tr>
<$list filter="[tag[Person]sort[caption]]">
<tr>
<td><$link to={{!!title}}>{{!!title}}</$link></td>
<td>{{{ [tag[Conversation]contact[????]count[]] }}} </td>
</tr>
</$list>
</table>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/a1bb1ce5-c8f3-46fc-8124-4d90449e37f4n%40googlegroups.com.