I have a custom list named “Employees' which has the
following columns.
- FirstName – Single line of text
- LastName – Single line of text
- FullName – Calculated Field
In this blog you will see how to get the calculated field
formula using SharePoint Object Model.
Formula for FullName
=[LastName]&","&[FirstName]
Code Snippet:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.SharePoint; namespace CalculatedField |

Join the conversation! Your thoughts help the community grow.