how to create custom list column something like people column?

737 views Asked by At

I wanna to create a list column that is something like "people or group" sharepoint type in sharepoint 2013. I mean I want to create a list column that get a display text value and a url that when user click on it go to a special page, in the same way when you click on for example "Modified By" field value that is a user id you go to a page that show the user information.

Any idea???

Thanks in advance!!!

1

There are 1 answers

1
Greg On

In this article you can find info how to create link in sp column using columns' values. Bassicaly you have to create calculate field and create specific formula which generates expected HTML e.g.

=CONCATENATE("<DIV><a href='","http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.",Title,IF([Open in new window?]=TRUE,"' target='_blank' ","'"),">",Title,"</a></DIV>")