web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Concat Columns with ID
Power Automate
Answered

Concat Columns with ID

(0) ShareShare
ReportReport
Posted on by 28
I have a very simple task to create a unique ID by concatenating a CurrentTitle column with '-' and the ID of the item. Only requirement is the ID should be 4 character long so for example if ID is 12 than the unique ID should be CurrentTitle - 0012.
 
I tried different formulas to update item with no success. Can you please tell me what am i doing wrong in the formulas below ?
concat(triggerOutputs()?['body/CurrentTitle'] , ' - ' , triggerOutputs()?['body/ID'])
This will concat only title- ID but ID is not 4 character.
 
The other formula I used but it says expression is invalid.
 
concat(triggerOutputs()?['body/CurrentTitle'], '-', 
    if(length(string(triggerOutputs()?['body/ID'])) = 1, 
        concat('000', string(triggerOutputs()?['body/ID'])), 
        if(length(string(triggerOutputs()?['body/ID'])) = 2, 
            concat('00', string(triggerOutputs()?['body/ID'])), 
            if(length(string(triggerOutputs()?['body/ID'])) = 3, 
                concat('0', string(triggerOutputs()?['body/ID'])), 
                string(triggerOutputs()?['body/ID'])))))
Thank you.
Categories:
I have the same question (0)
  • Anastasia Profile Picture
    22 on at
    Please try the following instead of  triggerOutputs()?['body/ID']) :

    concat(substring('0000', 0, sub(length('0000'), length(string(triggerOutputs()?['body/ID'])))), string(triggerOutputs()?['body/ID']))
  • Verified answer
    Pstork1 Profile Picture
    69,127 Most Valuable Professional on at
    Try the following:
     
    concat(triggerOutputs()?['body/CurrentTitle'], '-', formatNumber(triggerOutputs()?['body/ID'],'0000'))
    Make sure the ID field comes through as an Integer or use a toint() function to convert it before formatting the number.
    ----------------------------------------------------------------------------------
    If this Post helped you, please click "Does this answer your question" and give it a like to help others in the community find the answer too!

    Paul Papanek Stork, MVP
    Blog: https://www.dontpapanic.com/blog
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Automate

#1
Haque Profile Picture

Haque 594

#2
Valantis Profile Picture

Valantis 328

#3
David_MA Profile Picture

David_MA 281 Super User 2026 Season 1

Last 30 days Overall leaderboard