Hello every body, I have looked on quite some topics here and there but could not find the answer to my question, so here am I. (but maybe I did not look enough...) I want to make a roll template into a maccro to display all the elements from an attack roll. here is the roll : /roll {@{selected|Puissance}d6kh1 +@{selected|mw1_domm}}-@{target|armor1_pro}} and here is the roll template I have done so far : <rolltemplate> <table> <tr><th>{{name}}</th></tr> <tr><td><span>Puissance: </span>{{pwr}}</td></tr> <tr> <td><span>Dommage: </span>{{domm}}</td> </tr> <tr> <td><span>Protection: </span>{{pro}}</td> </tr> <tr> <td><span>Force: </span>{{for}}</td> </tr> </table> </rolltemplate> .sheet-rolltemplate-cad table { width: 100%; border: 1px solid; color: black; font-size: 1em; font-family: "Helvetica Neue", Helvetica, sans-serif; } .sheet-rolltemplate-cad th { background-color: rgba(112, 32, 130,1); color: #ffffff; padding: 2px; border-bottom: 1px solid black; line-height: 1.6em; font-size: 1.2em; } .sheet-rolltemplate-cad .userscript-tcat { font-weight: bold; } .sheet-rolltemplate-cad td { padding: 5px; border-bottom: 1px solid black; } .sheet-rolltemplate-cad tr:nth-child(odd) { background-color: rgba(217, 217, 214,1); } .sheet-rolltemplate-cad tr:nth-child(even) { background-color: rgba(233, 233, 233,1); } .sheet-rolltemplate-cad .inlinerollresult { display: inline-block; min-width: 1.5em; text-align: center; border: 2px solid rgba(167, 168, 170,1); /*Cool Gray 6 C*/ } .sheet-rolltemplate-cad .inlinerollresult.fullcrit { border: 2px solid #3FB315; } .sheet-rolltemplate-cad .inlinerollresult.fullfail { border: 2px solid #B31515; } .sheet-rolltemplate-cad .inlinerollresult.importantroll { border: 2px solid #4A57ED; } and finaly the maccro : &{template:cad} {{name=@{selected|mw1_name}}}{{pwr=[[@{selected|Puissance}d6kh1]]}}{{domm=[[@{selected|mw1_domm}]]}}{{pro=[[@{target|armor1_pro}]]}} So here is the thing : I want the property "for" to be like that (pwr+domm)-pro But I can't find a way to take the value off the roll from this part => {{pwr=[[@{selected|Puissance}d6kh1]]}} and put it into the property for to make the calculation, but maybe it's not possible like that or maybe it's not possible in any way. Could any one help me find the solution to this problem. P.S. : english is not my mother language, so I hope every thing i have written here can be understood by ervery one, if not, do not hesitate to correct me.