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
1 reply
Subscribers
7 subscribers
Views
2108 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
hi all, I am trying to combine two fields in a gridfield to one. Basically
aswinb
over 10 years ago
hi all,
I am trying to combine two fields in a gridfield to one. Basically I am trying to combine firstname and lastname into a common field called "name". so what I did was create an expression rule which does the following:
ri!firstname & " " &ri!lastName.
the in the grid rule I did the following:
a!gridtextcolumn(
data: {apply(rule!expressionRule, index(local!datasubset.data, "firstname", {}), index(local!datasubset.data, "lastname", {}))}
)
but the output I am getting for lets say a name called "john smith" is the following:
John Smith Smith Smith Smith
John Smith Smith Smith Smith
John Smith Smith Smith Smith
anybody have any idea what to do?...
OriginalPostID-111527
OriginalPostID-111527
Discussion posts and replies are publicly visible
Parents
0
Steven Miccile
Appian Employee
over 10 years ago
data:{apply(rule!expressionRule,merge(index(local!datasubset.data,"firstname",{}),index(local!datasubset.data,"lastname",{})))}
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Steven Miccile
Appian Employee
over 10 years ago
data:{apply(rule!expressionRule,merge(index(local!datasubset.data,"firstname",{}),index(local!datasubset.data,"lastname",{})))}
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data