Can I create my own formula for a calculated field in Sharepoint 2010 using C #

I want to create a programmatically calculated field for Sharepoint 2010 using Visual Studio 2010 in C #.

Is there a way to set a formula that will call my own function and return the result back to the field?

My scenario:

  • let's say I want to create a field that always returns the sum between two other fields,
  • but I don't want to use something like "= sum ([filed1], [field2])".
  • I want to call the function "calc2Fields ()" and return the result.

Is it possible?

+3
source share
2 answers

, . , , , . . , , .

0
0

Source: https://habr.com/ru/post/1793620/


All Articles