I'm not aware of a way for a macro to do this automatically, though the api might allow it through power cards. I have never used power cards, so am no help there. As far as getting something similar with macros, some of the fancier sheets have a place to enter a secondary damage roll, which would allow you to just mirror the main damage by duplicating the damage roll there. You could write a macro with a drop down selection with all the different dice combinations, and have that query repeated on another line for your global damage. Since a repeated query takes the first answer and applies it to any identical queries after, you would only have to answer once. This seems like it would be a really horrible macro to write and you would have to answer the query every time you roll damage. I really dislike queries on something you roll a lot. Another thing you could do would be to set up each character with an an attribute for each attack they use. So, if "attack_a_damage" is 4d6, you could reference @{attack_a_damage} twice in your macro, once labeled as attack damage and once as global. Maybe one of those will spur some creativity if nothing else. Good luck!