Rainy Pass Posted July 15, 2008 Posted July 15, 2008 How do I sort a list of values created in a calculation field. Using the List function, the calc field produces: 2XL 3XL 4XL L M S XL XS How do I sort the result to read? XS S M L ...
Vaughan Posted July 16, 2008 Posted July 16, 2008 There may be some custom functions that do this. Try Brian Dunnings web site.
comment Posted July 16, 2008 Posted July 16, 2008 See if this helps: http://www.fmforums.com/forum/showtopic.php?tid/191271/
bruceR Posted July 16, 2008 Posted July 16, 2008 How do I sort a list of values created in a calculation field. Using the List function, the calc field produces: 2XL 3XL 4XL L M S XL XS How do I sort the result to read? XS S M L ... FilterValues(masterList; thisList) Where masterList holds all items in the desired order and thisList is the items to be evaluated. Example: filterValues( "XS¶S¶M¶L¶XL¶2XL¶3XL¶4XL"; "M¶L¶XS") Result: XS M L
Recommended Posts
This topic is 6033 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