Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
10 replies
Subscribers
7 subscribers
Views
3926 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
Hello, I've a text list (ie. List_txt="A, C, E, G, B, D, F"
Giobis
over 11 years ago
Hello,
I've a text list (ie. List_txt="A, C, E, G, B, D, F"). How I can showing it in alphabetic order?
I'm checking on function expression editor but without success :(
any suggestion?
Thanks...
OriginalPostID-104378
OriginalPostID-104378
Discussion posts and replies are publicly visible
0
evan.rust
Appian Employee
over 11 years ago
Check out the "Sort Utilities" plugin:
forum.appian.com/.../summary
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Giobis
over 11 years ago
Yeah... Great! thanks Evan
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Giobis
over 11 years ago
I tried with sorttextarray(ri!List_Demo_txt,"false")
but it doesn't works.. any suggestion?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Giobis
over 11 years ago
List_Demo_txt = A, C, B, D
sorttextarray(ri!List_Demo_txt, false)
Result: A, C, B, D... never changed! (Appian version 7.3)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Manikandank
over 11 years ago
Can you try this input for your List_Demo_txt = A;C;B;D
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Giobis
over 11 years ago
yes, with the ; it works... Thanks
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Giobis
over 11 years ago
anyone know How I can sort a CDT ?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Mike Schmitt
Certified Lead Developer
over 11 years ago
Is your text list stored as an array? It looks like you might be passing in a single string where the value is literally "A, C, B, D", whereas you should be passing in an array of {"A", "C", "B", "D"}.
Maybe try this: sorttextarray( split(ri!List_Demo_txt, ","), false())
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Mike Schmitt
Certified Lead Developer
over 11 years ago
(sorry, i replied without checking for subsequent replies, my bad)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Giobis
over 11 years ago
Thanks mschmitt..
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel