I have created a custom list with 3 columns, when I add a edit an item of this list I can see created by and modified by details at the end of the form. I want to display just modified by value at some other place in the same form. I am able to display modified date using formula [Modified], but not able to get modified by. Please help. Thanks.
-
Internal name of field Modified By is Editor. Did you try to use [Editor] in your formula? (since [Modified] is working)Vedran Rasol– Vedran Rasol2012-05-29 12:06:34 +00:00Commented May 29, 2012 at 12:06
-
Does not work :(NotesArt– NotesArt2012-05-29 15:12:51 +00:00Commented May 29, 2012 at 15:12
Add a comment
|
2 Answers
I had the same problem you did with the "Modified By" (@Editor) field not showing up on my customized edit form. Following the example from this post, I was able to get the "Modified By" value to display on my edit form by adding the following markup:
<SharePoint:CreatedModifiedInfo ControlMode="Display" runat="server">
<CustomTemplate>
<SharePoint:FieldValue FieldName="Editor" runat="server" ControlMode="Display" DisableInputFieldLabel="true"/>
</CustomTemplate>
</SharePoint:CreatedModifiedInfo>
-
I am sorry, but i could not find related to my problem in this article, could you please point it out. Tried <xsl:value-of select="@Modified_x0020_By"/> but did not work. :(NotesArt– NotesArt2012-05-29 15:19:40 +00:00Commented May 29, 2012 at 15:19
-
You are correct. I was testing this against a document library and not a custom list. I have it working now and will edit this answer.Danny Jessee– Danny Jessee2012-05-29 23:28:56 +00:00Commented May 29, 2012 at 23:28
-
Hi Danny, I have a new requirement where I have to show item creator's name instead of modifier, I have tried to replace Editor with Creator but did not work. Please help.NotesArt– NotesArt2012-06-07 03:59:11 +00:00Commented Jun 7, 2012 at 3:59
-
1
In the ribbon click on the tab "List" > "Modify View"
Then you need to check this option "Modified By" field and save the view. Please refer to the sample view screen below

-
I can display it in view..but i need it on the form.NotesArt– NotesArt2012-05-29 15:13:26 +00:00Commented May 29, 2012 at 15:13