Hello,
None of these pages use our plugin.
In our plugin, the process is very simple. I’ll try to describe the process with a hypothetical example:
Assuming you have three number fields for three different products: table (fieldname1), chair (fieldname2), and desk (fieldname3), whose labels are the products’ names, and their values the quantity entered by the user.
Furthermore, assuming the area and volume of products are:
Table -> area 2 square meters, volume 3 cubic meters.
Chairs-> area 1.3 square meters, volume 2.5 cubic meters.
Desk -> area 3.6 square meters, volume 5 cubic meters.
The calculated field to calculate the total area would be:
SUM(2*fieldname1, 1.3*feildname2, 3.6*fieldname3)
And the calculated field to calculate the total volume:
SUM(3*fieldname1, 2.5*feildname2, 5*fieldname3)
Best regards.