I'm building flow that generate sms message that will take some parameters (for example: name if entity account and fullname if entity is contact)
the problem I faces that I'm need to send column name as parameter and while generate sms message get name from account entity or fullname from contact
where parameter value display as string as
clint: @{items('Apply_to_each_Account_-_dynamic')?['name']}
I need to send the previous string in runtime and flow understand as in image
It should work as you have entered in the expression. One other way is to use Concat function and concat both string expressions.... Something like below...
concat('Test', outputs('Create_file')?['body/DisplayName'])
I tried to use "concat" expression but still nothing happened, value of
concat('client:', @{items('Apply_to_each_Account_-_dynamic')?['name']}) become
"client: @{items('Apply_to_each_Account_-_dynamic')?['name']}"
not
"client: account name"
it still understant "@{items('Apply_to_each_Account_-_dynamic')?['name']}" as string
Can you try following?
concat('client:', items('Apply_to_each_Account_-_dynamic')?['name'])
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Learn from the top Power BI, Power Apps, Power Automate & Power Virtual Agents experts!
User | Count |
---|---|
32 | |
32 | |
22 | |
22 | |
19 |
User | Count |
---|---|
56 | |
56 | |
41 | |
37 | |
29 |