I'm been attempting to make the Armor section of the sheet I'm working on slightly more autonomous. The armor section has a repeating section where players can add each piece of item, with their respective values. I've been attempting to get the highest AV from it, and display it somewhere else as a "Total", but it always comes up blank for me. I'm a real beginner at this, so any help is appreciated! on("change:repeating_uheadarmour", function() { on("change:repeating_uheadarmour:uhead_armour_avc", function () { var armourValue; armourValue = Math.max(Number(values.repeating_uheadarmour_uhead_armour_avc)); setAttrs({ uhead_armour_avc_total: armourValue }); }); };