I have this dynamic table set up, but I cannot figure out how to incorporate a certain variable in the filter. I have one tiddler that has a field ‘PMI’ and it has ‘x’ in it. How do I have it show up in the list if it fits all the other criteria AND the user selects Yes in the PMI dropdown, but not show up if the user selects No?
Program: <$select tiddler="$:/state/myProgramInput" field="text">
<option value="Fixed">Fixed</option>
<option value="ARM">ARM</option>
<option value="HELOC">HELOC</option>
<option value="Construction">Construction</option>
</$select>
Package: <$select tiddler="$:/state/myPackageInput" field="text">
<option value="Prequal">Prequal</option>
<option value="Initial">Initial</option>
<option value="Redisclosure">Redisclosure</option>
<option value="Pre-Closing">Pre-Closing</option>
</$select>
PMI: <$select tiddler="$:/state/myPMIInput" field="text">
<option value="x">Yes</option>
<option value="">No</option>
</$select>
<hr>
<$vars ProgramInput={{$:/state/myProgramInput!!text}}>
<$vars PackageInput={{$:/state/myPackageInput!!text}}>
<$vars PMIInput={{$:/state/myPMIInput!!text}}>
<table>
<thead>
<tr>
<th> </th>
<th>Name</th>
<th>Code</th>
<th>Stack</th>
</tr>
</thead>
<tbody>
<$list variable=stack filter="[{StackingOrder}enlist-input[]]">
<$list filter=" [tag[Documents]has:field<ProgramInput>has:field<PackageInput>stack<stack>] " variable="tiddler">
<tr>
<td><$checkbox></$checkbox></td>
<td>
<$link to=<<tiddler>>>
<$text text={{{ [<tiddler>] }}} />
</$link>
<$text text={{{ [<tiddler>get[caption]] }}} />
</td>
<td>
<$text text={{{ [<tiddler>get[code]] }}} />
</td>
<td>
<$text text={{{ [<tiddler>get[stack]] }}} />
</td>
</tr>
</$list>
</$list>
</tbody>
</table>
</$vars>
</$vars>
I’ve searched the forum and the tiddlywiki site but I’m still too new at this to get it I guess 
)
That’s my bad.
I also added some more documents but honestly the Worst Case tiddler is the only real issue. At least that I’ve come across haha