There is a spell that applies the same 4d8 roll twice in two different ways. What I am trying to do is to get the single result to apply in two different ways. As I try to get the macro to behave as the spell does, I discover that I don't know how to map the bolded 4d8 into the second use of the same roll. (Bolded for ease of description). /me life transference attempt [[ 4d8 ]] | necrotic damage | [[ {4d8}*(2) + 4 + 5 ]] | healing | and trying [[ 4d8 ]] | [[{4d8}*2 + @{selected|wisdom_mod} [Wisdom Mod] + 2 + 3]] the result looks like this What I am trying to do is have the 4d8 rolled once; the first time the value is applied raw, and the second time the value is applied as doubled with modifiers. As shown, each instance of 4d8 is rolled separately. How do I need to change this macro so that the 4d8 is not rolled twice? Solution requested: Find a way to make the bolded (and only roll of) /r 4d8 (the value a) be used in two locations. Can I insert a into the second piece of the macro so that is looks something like this? /me life transference attempt [[ a ]] | necrotic damage | [[ { a }*(2) + 4 + 5 ]] | healing (et cetera) /me life transference attempt [[ 4d8 ]] | necrotic damage | [[ {4d8}*(2) + 4 + 5 ]] | healing | and trying [[ 4d8 ]] | [[{4d8}*2 + @{selected|wisdom_mod} [Wisdom Mod] + 2 + 3]]