I’m hoping someone can point me in the right direction. I have several checkboxes that are used to compute total reimbursements. I have set the default value to 1 for checked and 0 for unchecked in XPages (each checkbox control). Do I need to access the backend document (corresponding checkbox). For example, document1.getItemValueInteger(“cbox1”) or similar to get integer? In the end, I need to total the values from all checkboxes and display in a computed field (or read only textbox). Example: If 3 out of 4 checkboxes are checked by the user, the total should show 3. This should ocur as the user’s clicking checkboxes. I’m assuming the partial or full refresh (under events?) would handle this? Our original form (standard Notes form). If there were a quick fix (e.g. ajaxrefresh function), I would just use the trusted old computed field and @Sum… would be nice in this case. Then take time to convert design to XPages…