I am having an issue where I'm trying to make a macro that does some simple math based on the tarot card I am drawing and whether it is inverted. In short, if I draw a tarot card 1-10 and it is right side up, I want it to do an equation of: 21 - # of card. If I draw a tarot card 1-10 and it is upside down, I want it to do the equation of: # of card. This is what I have: ?{Inverse?|No,[[21 - ?{Card Amount?}]] |Yes,[[?{Card Amount?}]] } So it SHOULD have a dropdown of yes or no, and depending on that answer, it should ask what number card I have and either return that number, or subtract it from 21. Technically I shouldn't HAVE to make this macro as it's a very simple logic to follow in my head, however it'd be nice to make it into a working macro so the presentation of the data to my DM isn't just my verbal confirmation of what I rolled. What I am getting instead of the yes/no dropdown is this: which is problematic. How do I fix this to make it do what I am intending it to do? It seems like such an easy problem yet I've been messing with it for an hour.