I have a template that is used for weapon rolls. Weapons can be used in a few different ways, and each way requires a subset of fields. Most of these fields have dropdown queries, and all needs to be rolled every time, even if they are not needed. When parrying, hitLocation is irrelevant, as well as damage, etc. I've spent the day reading about nesting dropdown queries and how that can be used to set a subset of the templates fields. I think I'm doing it correctly, but it does not work. Mostly I only get one dropdown option, that then gets a long string as a value. I've read the wiki on advanced uses of dropdowns, I've read MarkofTheDragon's post countless times, several threads where Scott C, Sylvire and GiGs discuss topics related to this. I'm at a loss, please help me. I've tried both approaches, ofcourse following the rules of not altering things belonging to attributes and keeping the outer query "as is". &{template:MyTemplate} ?{Test|Test1,{{Field1=Bla}}{{Field2=Bla2}}|Test2,{{Field3=Bla3}}{{Field4=Bla4}}} &{template:MyTemplate} {{?{Test|Test1,Field1=Bla}}{{Field2=Bla2|Test2,Field3=Bla3}}{{Field4=Bla4} }} To practice I started doing nested dropdown queries, but I cant even get those working. Same issues. To few or to many options, with both the label and its "value". I do them like this: type=? { Type |Attack,? { Where |Standard, standard |StandardRanged, standardRanged } |Aim, ? { Where |Head, head |Arm, arm } } Which is then changed to this: type=? { Type |Attack, ? { Where |Standard, standard |StandardRanged, standardRanged } |Aim, ? { Where |Head, head |Arm, arm } } Since it is only one extra level, to my understanding the "&" should not be replaced with "&amp" yet. I then combine into one row and uses that for the fields for the template. "&{template:MyTemplate} {{type=?{Type|Attack, ?{Where|Standard, standard|StandardRanged, standardRanged}Aim, ?{Where|Head, head|Arm, Arm}} }}" This nested dropdown Attack, standard and standardRange as values, but i expected Attack and Aim. There are issues with what values gets assigned aswell. some values are long and include "|" in them. In short, I wanted to use queries to filter what fields needs to be assigned values for the template in order to cut down on unnessicary dropdowns. They require html character replacement, so I figure I'd paractice with nested queries but can't get anything to work propperly. Have things changed from a few years ago where it was obvious and straight forward how to do this, or am I doing something wrong? Is there someother way to go about having different subsets of template fields calculated?