
Hey Sheet Hackers, Is there any particular reason why the following code does not work for sheet workers? var sumArgs = (...args) => { return args.reduce((a, b) => { return a + b; }; }; In a character sheet where I am summing lots of things this would be really a helpful convenience function. Ofc the real life scenario is a bit more "complex" and also parses the values to int or assumes 0. Cheers, Marco