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
2 subscribers
Views
3545 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Reports
64480 - no subject - I have two arrays in process model conta
ambrishs
over 12 years ago
I have two arrays in process model containing FirstName and LastName in it. I am reporting on this process model. I want to display Name(FirstName LastName) as single column on report. I am trying to use doForEach to achieve so, but it doesnt appear to be working on report. Any help/suggestion? Thanks....
OriginalPostID-64480
Discussion posts and replies are publicly visible
Parents
0
harrison.touati
Appian Employee
over 12 years ago
You could create a rule called "combineNames", with two text inputs: firstName, lastName.
=ri!firstName&" "&ri!lastName
You can then apply this rule as follows:
apply(rule!combineNames,merge(pv!arrayOfFirstNames,pv!arrayOfLastNames))
The output of that will be a list of strings, each string being a first and last name separated by a space.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
harrison.touati
Appian Employee
over 12 years ago
You could create a rule called "combineNames", with two text inputs: firstName, lastName.
=ri!firstName&" "&ri!lastName
You can then apply this rule as follows:
apply(rule!combineNames,merge(pv!arrayOfFirstNames,pv!arrayOfLastNames))
The output of that will be a list of strings, each string being a first and last name separated by a space.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data