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>