While using the Pathfinder character sheet, my players have complained about the macro button labels being entirely too long and ambiguous when the buttons are dragged from the sheet down to the macro bar. Since I could not figure out a way to modify these button labels, my workaround was to create simple macros that linked to the button itself on the sheet. I changed the "selected" to the specific player names for each attack and shared these macros with my players. All things worked well unit we came to a point where a macro button linked to an attack with more than one roll was used. In the example below, I added an additional 1d4 roll for bleed damage. When the button on the sheet is used, it rolls both sets of the macro. When the newly created macro is used, it stops after the @{notes}}}}. This issue existed for any macro with more than one roll. New Macro Button: %{" insert player name" |repeating_weapon_1_Attack} On Sheet Macro: &{template:pf_attack} {{character_name=@{character_name}}} {{character_id=@{character_id}}} {{name=@{name}}} {{attack=[[1d20cs>@{crit-target} + @{total-attack}]]}} {{damage=[[@{damage-dice-num}d@{damage-die} + @{total-damage}]]}} {{crit_confirm=[[1d20 + @{total-attack}]]}} {{crit_damage=[[(@{damage-dice-num} * (@{crit-multiplier} - 1))d@{damage-die} + (@{total-damage} * (@{crit-multiplier} - 1))]]}} {{type=@{type}}} {{description=@{notes}}} &{template:pf_attack} {{character_name=@{character_name}}} {{character_id=@{character_id}}} {{name=Bleed}} {{damage= [[1d4]]}}{{type=Bleed}} Should I be altering either my character sheet macro or my new macro in any way to ensure it respects the entire statement? Thank you