How to remove a field from a List in Sharepoint 2010?
Any help please?
How to remove a field from a List in Sharepoint 2010?
Any help please?
I assume you mean using code. This code should do the trick.
SPWeb web = SPContext.Current.Web;
SPList list = web.Lists["List Name"];
SPField field = list.Fields["Field Name"];
field.Delete();
just go to your list, go to List Settings (in the ribbon), scroll down to your fields (columns) and delete it.
Is not a big deal.
Best regards!