Hello @fifiburleigh,
Assuming there are six number fields in the form: fieldname1, fieldname2, fieldname3, fieldname4, fieldname5 and fieldname6, and you want calculate the sum of their values, and finally round the result to obtain an integer number as result. The equation associated to the calculated field would be:
ROUND(fieldname1+fieldname2+fieldname3+fieldname4+fieldname5+fieldname6)
If you want get only the integer part of the sum (without rounding):
FLOOR(fieldname1+fieldname2+fieldname3+fieldname4+fieldname5+fieldname6)
If you want get the integer number greater than or equal to the result:
CEIL(fieldname1+fieldname2+fieldname3+fieldname4+fieldname5+fieldname6)
Finally, if you want the result include a specific number of decimals, use the “PREC” operation: PREC(X, Y) returns the number X rounded with Y decimal places.
In the previous equation if you want get the result with two decimal places:
PREC(fieldname1+fieldname2+fieldname3+fieldname4+fieldname5+fieldname6,2)
and that’s all.
Best regards.