Hello, So im having a little trouble with the sheetworkers. With my current code, I cant seem to get it to even trigger in the console. on("change:int change:wiz sheet:opened change:PBvalue", function() { getAttrs(["intsmod","wismod"], function(values) { const ints = parseInt(values["intsmod"], 10)||0; const wis = parseInt(values["wismod"], 10)||0; var profb = ints + wis; var profb1 = 0; if (profb <=0 ){ profb1 = 0;} else{ profb1 = (ints+wis)/2; } setAttrs({ "PBvalue": Math.floor(profb1) }); }); }); What im trying to do is set it up so if the values of ints+wis are lesser or equal to zero PBvalue will be set to zero, otherwise its going to be (ints+wis)/2 value rounded down. intsmod and wismod are autocalculated fields. Could I get some help please?