FredP Posted May 21, 2008 Share Posted May 21, 2008 I am using the list function to list the users that are part of a particular project. List (Shot_Tasks | Project::TaskEmployeeID) This returns what it should. If UserId#1 has 3 tasks in that project, and UserID#2 has 4 tasks in that project, the field might look something like this: UserId#1 UserId#2 UserId#2 UserId#1 UserId#2 UserId#2 UserId#1 I would like to strip that down and remove duplicates from the field. Possible? Fred Link to comment Share on other sites More sharing options...
aaa Posted May 22, 2008 Share Posted May 22, 2008 Hi, Fred. ValueListItems() function must help here. Creat conditional Value List then use this function. Other way is to right custom recursive function. I does not tried it, but i think it is possible. If first way will not help you, let know. I will try second way. Link to comment Share on other sites More sharing options...
aaa Posted May 22, 2008 Share Posted May 22, 2008 And this is second way. It works in findset too. Link to comment Share on other sites More sharing options...
Crazycatz01 Posted November 29, 2014 Share Posted November 29, 2014 Hi, I just came across this thread via google, and am looking for an answer as well. Did you figure out how to do this? I would like to avoid use of custom functions since my database is being designed to be run on filemaker go. Thanks! Link to comment Share on other sites More sharing options...
doughemi Posted November 29, 2014 Share Posted November 29, 2014 As aaa said, ValueListItems() is the way to go. Create a value list using values from your field (a value list always contains only unique values), and then a calc field using ValueListItems(Get(FileName);YourValueList). Link to comment Share on other sites More sharing options...
Recommended Posts