You need to sign in to do that
Don't have an account?

Create Report With Created By with current user as filter
Is it possible to set your report criteria to the Created By field = XXX where XXX is the current user? What is the syntax for the value field for that?
Any progress on this? I am hunting a way to find CURRENT USER in any one of 3 user lookup fields for a report. So if a user is linked to a record in any one of 3 fields (team leader, team member 1, 2 3) they will show up on a view called My Assigned Projects.
So CURRENT USER would be ideal....
--------------------
ok the above worked with my scenario as follows:
New number formula field with this code:
IF(
OR(
$User.Id = Engineer_Lead__c,
$User.Id = Team_Member_1__c,
$User.Id = Team_Member_2__c,
$User.Id = Team_Member_3__c
),1, 0)
then in the view I used filter as follows:
Assigned = 1 (so whoever logged in, it will kick back 1 and show them their assigned projects.
All Answers
Hope this helps.
No, I created a report type just for this object. The owner of the master is not necessarily and usually isn't the person creating the child record.
It's essentially a project system. The master is the project record, owned by the project manager, the child is the todo record, identified by the user requesting the todo, thereby the need to filter a custom lookup to the User object by the current user.
In any event, is there not any filter special criteria, like we have for date for the User object fields? Like NEXT WEEK, NEXT n DAYS, etc.... except for User lookup fields, like CURRENT USER
Were you able to find any solution for this?
Jeremy Kraybill
Austin, TX
And then use that field for reporting and views. Not perfect but it works and allows you the full power of formulas in your filter criteria.
Jeremy Kraybill
Austin, TX
Any progress on this? I am hunting a way to find CURRENT USER in any one of 3 user lookup fields for a report. So if a user is linked to a record in any one of 3 fields (team leader, team member 1, 2 3) they will show up on a view called My Assigned Projects.
So CURRENT USER would be ideal....
--------------------
ok the above worked with my scenario as follows:
New number formula field with this code:
IF(
OR(
$User.Id = Engineer_Lead__c,
$User.Id = Team_Member_1__c,
$User.Id = Team_Member_2__c,
$User.Id = Team_Member_3__c
),1, 0)
then in the view I used filter as follows:
Assigned = 1 (so whoever logged in, it will kick back 1 and show them their assigned projects.