Search Community
- Force.com Discussion Boards
- :
- Salesforce User Discussions
- :
- Best Practices Discussion
- :
- Re: Lead Report - Last Modified By not equal to Le...
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Lead Report - Last Modified By not equal to Lead Owner
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
09-17-2009 11:50 AM
Re: Lead Report - Last Modified By not equal to Lead Owner
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
09-18-2009 06:38 AM
The only way that I've been able to come close to that using an "out of the box" SFDC Report is to create either a Summary or Matrix report where one Group is the Owner and another Group is Last Modified By, and then doing the old "Stare and compare". If you have a large SFDC Org, with a lot of users this can really blow, but it's the best that I've been able to come up with, without getting into heavy coding.
The only other option I can think of would be creating a custom formula field that captures the User ID of Last Modified By, and then creating another formula field that evaluates OwnerID and LastModifiedBy.ID and returns a 0/1 or True/False and then running your report off your result field. But I don't even know how you would begin to code something like that (if it's even possible).
Re: Lead Report - Last Modified By not equal to Lead Owner
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
09-20-2009 06:12 PM - last edited on 09-20-2009 06:15 PM
You can create a custom formula (text) then use the Advanced Formula tab to get to:
if( LastModifiedById = OwnerId ,"Untouched","Updated" ) (you should be able to copy this directly as well)
Then use this field as a criteria in your report.
Hope this helps.
Brian

