Domanda

I would like to have something like this, where AnnualSales is automatically populated with the sum of the four quarter sales figures:

Q1Sales     Q2Sales     Q3Sales     Q4Sales    AnnualSales
-------     -------     -------     -------    -----------
 123.12      234.23      345.34      456.45    =sum(Q1Sales, Q2Sales, Q3Sales, Q4Sales)

Is this possible with OOTB functionality, or must I find another way of achieving this?

È stato utile?

Soluzione

According to your description, it seems you need to use a calculated column. The settings is like the screenshot below. In my test list, it works properly. enter image description here

enter image description here

Altri suggerimenti

Please consider using a calculated column. You can either use the addition operator (+) or the SUM function. Please refer to this Microsoft article for details.

enter image description here

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top