For a little context I'm playing in a homebrew Naruto campaign where instead of potions of healing we use healing tags, these healing tags come in different sizes much like potions but they have the added the rule that you can use them either as an action or bonus action, and when used as an action they heal for the max amount instead of rolling the dice. I'm attempting to make a macro that asks both the type/size of the healing tag and if you're using it as an action or bonus action and no matter what I try I seem to end up with either 1 of 2 results, either all options appear in the first dropdown and when you get to the second one it just fills in the first of its options as a prefill and you can type something yourself, this does usually result in a result being displayed but it removes most if not all usability, or the second result is I get to separate the queries correctly by using the html entity codes, like explained here <a href="https://wiki.roll20.net/Macros#Advanced_Usage_for_Roll_Queries" rel="nofollow">https://wiki.roll20.net/Macros#Advanced_Usage_for_Roll_Queries</a> , but I can't get a numeric output to display from the queries in this case, this behavior seems consistent No matter if i try to do it all in the same macro or attempt to use separate macros. Any help would be highly appreciated, the 2 (or 3 depending on how you look at it) queries that I need to get to work together are as follows: ?{Action or Bonus Action|Action|Bonus Action} ?{Tag Type|Regular,[[18]]|Greater,[[36]]|Superior,[[54]]|Supreme,[[72]]} ?{Tag Type|Regular,[[3d6]]|Greater,[[6d6]]|Superior,[[9d6]]|Supreme,[[12d6]]} I have spent anywhere between 3 to 5 hours trying to solve this now, and all the googling and help I can find leads to queries that are 1 dropdown and one free fill in and don't seem to help me at all, I've tried both using the action/bonus action query as the base and using the tag type query as the base and building upon them in the same macro, I've attempted to set the action/bonus action macro as the base and calling a separate macro for selecting the tag type depending on if you've selected action or bonus action but neither worked and I think I've exhausted all possible avenues on my own by now. I'd rather attempt to do this with base macros feature because our DM is currently not very available out of game so if scripts are needed it is gonna take a while, but our DM does have a pro subscription and isn't against adding scripts either so please if your suggestion is "you can only do this with a script" elaborate on the needed script and an example of how it could work with said script to make everyone their lives a little easier.