Hi,

I'm sure this is a basic question, but my TW skill level is not very 
high... 

Here's the use case I have in mind:

I have three tiddlers:
-TidA tagget "a"
-TidB tagget "b"
-TidC tagget "a"

I want to create a table with two columns, the first to list all tiddlers 
tagged with "a" and the second to list all tiddlers tagged with "b".

I created a fourth tiddler in which I created the table with this content:

<table>
<th >Tag_a</th><th >Tag_b</th>
<$list filter="[!is[system]tag[a]sort[title]]" variable="taga">
<$list filter="[!is[system]tag[b]sort[title]]" variable="tagb">
<tr>
<td><$link to=<<taga></$link></td><td><$link to=<tagb></$link></td>
</tr>
</$list>
</$list>
</table>

Problem (but normal !) ! My table displays two lines like this:
| TidA | TidB |
| TidC | TidB |

So i'm looking for a tip or an advice which would avoid to show duplicate 
TidB on the second row.
In short, this result:
|Tag_a |Tag_b|
| TidA | TidB |
| TidC |         |

So I'm looking for a solution or advice to avoid duplicating TidB on the 
second line.
Any help would be welcome.

Thank you and have a good day !

-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/63198d8e-4198-43d7-9915-33507c6653a7n%40googlegroups.com.

Reply via email to