I'm just beginning to learn sheetworkers (and this is only indirectly a sheetworker question). I believe... A field will only auto-calc if it is disabled="true" "It is possible to include a span tag that has the same attribute name as an input tag, and the span tag will be updated whenever the input is modified." When I try this together, the span only gets the text of the formula, not the result of the formula. <span name="attr_STR"></span>
<input type="text" name="attr_STR" value="(@{STR_base}+@{STR_pow})" disabled="true" /> The input field shows the correct value. So if STR_base = 15 and STR_pow = 3, then the input field displays 18. That works. However, the span displays "(@{STR_base}+@{STR_pow})", which is of course not what I wanted. I wanted it to display the calculated value. I'm I doing something wrong, or do I have to use a sheetworker for this?