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?
gadym source
share