Hello everyone, So this thingy might have already been answered but the subject of macros is so diverse i'm getting a bit lost, so i'd appreciate any help or useful redirection. To put some context, in a PF game my character has an ability that adds a d6 to his attack, then adds twice the result of that d6 to his damage. I'm using and slightly modifying the macros initially present in the pathfinder character sheets. I've been using a dropdown query with a yes/no for the initial d6 bonus (since the bonus isn't always there), giving me something like this for the "attack" part : {{attack=[[ 1d20cs>[[ @{crit-target} ]] + @{attack_macro} +?{Inspiration ? |Oui, 1d6|Non, 0} ]]}} But how to use that result later for the damage part ? I wanted to try and put the "1d6" in brackets and use the re-using tricks found in the wiki, doing something like this (note that I have another query in the damage but it shouldn't have an impact in this case since it already works just fine by itself usually) : {{attack=[[ 1d20cs>[[ @{crit-target} ]] + @{attack_macro} +?{Inspiration ? |Oui, [[1d6]]|Non, 0} ]]}} {{damage=[[@{damage-dice-num}d@{damage-die} + @{damage_macro} + $[[2]]*2 +?{Studied strike ? |Oui, 3d6|Non, 0}]]}} In the attack part, the query still works fine, but the damage part doesn't compute correctly, giving me "visually" this kind of results : Attack 45 vs AC Damage - P [[1d4 + 12 [Total] + 0 + 0 + 0 + 6 *2 + 3d6]] I've been trying a few other things without success, so if anyone could give me any hint as to how to make the macro work, it would be greatly appreciated. Thanks in advance, Glonthein