davidnickerson Posted October 14, 2011 Posted October 14, 2011 I'm trying to determine if there's a way to return only unique values using the List function. I have two tables ( A, B ) each related to the same parent table. From the parent table, I need a way of determining if the set of unique values in A match those of B. List (field) gives me the set of all related values from either table. However, there are duplicate values in (field) for both tables. So, for example, List might return: 1, 1, 2, 3, 4, 4 etc. I need List to show: 1, 2, 3, 4 Any help is most appreciated!
doughemi Posted October 14, 2011 Posted October 14, 2011 Try the ValueListItems function. Value lists automatically show only unique values. Create a value list using values from the field in question (using only related values).
bcooney Posted October 14, 2011 Posted October 14, 2011 I would search for a custom function, perhaps Ray's.
davidnickerson Posted October 14, 2011 Author Posted October 14, 2011 Yes, ValueListItems! Can't believe I didn't think of that. Thanks, doughemi!
comment Posted October 14, 2011 Posted October 14, 2011 I need a way of determining if the set of unique values in A match those of B. What exactly does that mean?
Recommended Posts
This topic is 4789 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now