combining many attributes values to one attribute

0
I have created an attributes called headmaster feedback,manager feedback and salesman feedback in one entity and i have created feedback in another entity .Now I have to store the three feedback values  to the one feedback attribute of another enity.
asked
3 answers
1

Easy to do with "Microflow"


answered
0

In a Microflow you can retrieve the relevant “Car” entity and the “History” entity. Then you can add an action to change the car entity. Select the feedback attribute and fill it with $Car/ManagerFeedback + $Car/HeadFeedback + SalesManFeedback. That should do the trick, if I understand your question correctly.

answered
0

You’ll need to use String Concatenation to join the 3 feedback strings together. You can then store that single string in your History entity.

https://docs.mendix.com/refguide/string-function-calls#15-string-concatenation

Hope this helps

answered