function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Anoop AsokAnoop Asok 

Who modified a list view and when?

Hi everyone,

Is there a lastmodifiedby and lastmodifieddate for list views? If yes, where can we see that?

 

Thanks,

Anoop

Best Answer chosen by Admin (Salesforce Developers) 
SurekaSureka

Hi,

 

On click of Edit in the List view, there is a last Modified field which shows who last modified the list view and when was it modified.

 

Thanks

All Answers

SurekaSureka

Hi,

 

On click of Edit in the List view, there is a last Modified field which shows who last modified the list view and when was it modified.

 

Thanks

This was selected as the best answer
Anoop AsokAnoop Asok

Great... Thank you.. somehow didn't notice it earlier.

 

Thanks,
Anoop

Charles Thompson 12Charles Thompson 12

FYi - for those who find this after...

1. This doesn't work in Lightning.  There is an Idea to deliver this in Lightning, please upvote
https://success.salesforce.com/ideaView?id=0873A000000TtuRQAS

2. There are two workarounds:

a) Switch to Classic and edit the list view (as described above)

b) Use Developer Console or Workbench SOQL Query and execute something like this:

SELECT LastModifiedById,LastModifiedDate,Name FROM ListView WHERE Name = '<your list view name>'