Hey everyone, I'm currently working on a custom sheet, and have some issue on a specific roll button. I'd like to use, as a property for this roll, an attribute value based on another one. Here's an example : <input type="number" name="attr_Strength" /> <input type="hidden" name="attr_attribute_name" /> <button type="roll" name="roll_Example" value="&{template:example} {{prop=@{@{attribute_name}}}}"></button> If attr_Strength input is "12", and attr_attribute_name is "Strength", requested behaviour would be to roll with parameter prop equals to 12 : prop = @{@{attribute_name}} prop = @{Strength} prop = 12 I tried a few suggestions I read on the forum and elsewhere, like using html code instead of @{}, but nothing works. I get the following error or a variant : No attribute was found for @{JohnDoe|@{attribute_name} Thanks for your help !