I would like to filter an assignment report by the Project Owner's Home Team.
Something like this:
project:owner:homeTeamID = 5deaa5330076f8ebbf6b32fd0d1b0ba8
project:owner:homeTeamID_Mod = in
This filter does not appear to work though. Any ideas?
Solved! Go to Solution.
Views
Replies
Total Likes
Are you getting a red text error? If so, you might want to upvote this idea:
The best way to get there is through an exists statement, which you can read up on here:
A sample exists statement might look like this (this is just a guess, I didn't test it):
EXISTS:a:$$OBJCODE=PROJ
EXISTS:a:ID=FIELD:projectID
EXISTS:a:owner:homeTeamID=5deaa5330076f8ebbf6b32fd0d1b0ba8
Views
Replies
Total Likes
Are you getting a red text error? If so, you might want to upvote this idea:
The best way to get there is through an exists statement, which you can read up on here:
A sample exists statement might look like this (this is just a guess, I didn't test it):
EXISTS:a:$$OBJCODE=PROJ
EXISTS:a:ID=FIELD:projectID
EXISTS:a:owner:homeTeamID=5deaa5330076f8ebbf6b32fd0d1b0ba8
Views
Replies
Total Likes
Thanks Skye!
I was on this track as well, but couldn't figure out if I needed to connect to the Project Object (my original thought) or the User Object (my second thought).
And the ID=FIELD:projectID always trips me up.
And, as usual, your textmode worked perfectly for my use case!
Views
Replies
Total Likes
yeah I hear you, and it's not unusual. Those two things always trip people up. I will leave you with this thought:
1) Either object (user or project) might work? It would be an interesting exercise to try the user object to see whether it gives you the same result.
2) This line
"EXISTS:a:ID=FIELD:ID"
in my brain, it is better off pictured as
EXISTS:a:"something on the object"=FIELD:"something on this report"
Translation: My exists statement says "hey the ID on the project object is the same as the projectID on this assignment report". You might also be able to say (maybe), "hey, the ID on the user object is the same as the project:ownerID on this assignment report" -- then you would be able to use the user object.
Views
Replies
Total Likes