In my custom character sheet I have a field that contains the total encumbarance of the character (addition of armor and shield encumbarance and general encumbarance) - this is an autocalculated field. Now I want to subtract this value from certain skills (which works fine) and half the encumbarance (rounded up) from the speed of the character. This is where I run into problems. I have the following set as value for my "speed" field in the character sheet: value="@{gk_value}+@{bew_value}+@{gsw_mod}+@{gsw_temp}-ceil(@{combat_beh}/2)" everything works fine, except for the last part. the value of the field "combat_beh" (which is the combined total encumbarance) is not divided by 2 but instead subtracted completely. I tried with extra () around the @{combat_beh } /2 already, and tried to reverse the order of the values etc. Am I missing something?