Introduction I’ve worked with all versions of SharePoint, that being SharePoint Services 2.0 or SharePoint Portal Server 2003 (commercial release), SharePoint Services 3.0 or SharePoint Portal Server 2007 (commercial release), SharePoint Foundation 2010 (free) – plus SharePoint Server 2010 (commercial extension for Foundation), SharePoint Enterprise 2010 (commercial extension for Server), SharePoint Foundation 2013 (free) plus

Read More
6 Free Auto Hosted SharePoint Providers

Sometimes it is essential to hide a column in a SharePoint list/library. It can be done easily with PowerShell. The following code hide “fieldName” in Edit and New Forms; however, it is available in display and new form! #Get the Web $web = Get-SPWeb “URL” #Get the List $List = $Web.Lists[“listName”] #Get the Field $Field

Read More
How to make sharepoint list/library fileds invisible in different forms using Powershell

Create a workflow which is described on following image. Note: After any two of three approvers finish their approval tasks document will be either approved or rejected. Resolution Access SharePoint site and create custom SharePoint list. List name: Regulation Approvers Columns: Editor (PeoplePicker) Approver1 (PeoplePicker) Approver2 (PeoplePicker) Approver3  (PeoplePicker) Note: Using this method approvers can be different for

Read More
How to create a SharePoint approval workflow with 3 dynamically-determined approvers

In short, the project was to display Blog Posts on our Intranet home page in a web part. No, doubt the CQWP comes to mind first. It is easy enough to configure by selecting your query source, and styling how it will be presented in the web part via web part editor and xslt (another

Read More
SharePoint 2010: Dispaly a Users Profile Picture in a Content Query Web Part Using SPDesigner Workflow

Objective: implement custom sort functionality for list items make order number (rank) visible on the list First, let’s create custom action for reordering items and make hidden field Order visible and sortable on default view with PowerShell. [void] [System.reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”) | out-null # Add “Change item Order” button at target List $siteUrl = “yourSiteCollectionUrl”; $listTitle =

Read More
Rank list items by custom order with JSLink

One of the things I love best about SharePoint is I am always learning something new every day. In my experience, when things work right the first time you try something, you don’t learn much. Conversely, when things don’t work correctly, I learn tons of stuff. ‘Nuff said about learning opportunities in SharePoint. I recently

Read More
Workflow throws an error when you try to update or delete to a BCS external list