cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

MS Flow expression - how to concatenate New Line into string variable

I am building a flow, and need to append values into a string variable for an audit trail

 

so I have this:

 

concat(string(utcNow()), ': ', 'Approved by Data Protection', Char(13))

but I get an error when trying to save the expression ...

 

in the list following the update (using the variable) it looks like this:

 

2019-05-21T08:28:43.2692428Z: Approved by Health & Safety2019-05-21T08:30:02.4883027Z: Approved by Data Protection

when it should look like this:

2019-05-21T08:28:43.2692428Z: Approved by Health & Safety
2019-05-21T08:30:02.4883027Z: Approved by Data Protection

what am I doing wrong, and how can I include a new line/line feed into the variable

 

2 ACCEPTED SOLUTIONS

Accepted Solutions
v-bacao-msft
Community Support
Community Support

Hi @livingstonep ,

 

You can add a carriage return directly to the Value of Append to string variable action.

34.PNG2.PNG

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

@ericonline @sarahmcd9000 @v-bacao-msft 

try this in Notepad or whatever your favourite text editor is:

 

Concat(variables("VarName"), '
" this is a new line in the target object", '
" this is a new line in the target object")

Paste the above into your target object using Expression:

 

NewLine in Flow put in expression.PNG

 

 

this works for list columns in an Update, in Compose operations, and in variables

here is an example:

 

NewLine in Flow Variable.PNG

 

and the concatenated New Line in the list:

 

NewLine in Flow Variable showing in List.PNG

 

hope this helps - if it does, please mark it as solution

View solution in original post

12 REPLIES 12
v-bacao-msft
Community Support
Community Support

Hi @livingstonep ,

 

You can add a carriage return directly to the Value of Append to string variable action.

34.PNG2.PNG

 

Best Regards,

Community Support Team _ Barry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Is this still a viable solution? I can't seem to get it to work. 

What I have

concat(utcNow(),':',items('Apply_to_each_2'),'HTTP request failed.')

image.png

What I get:

2019-09-30T06:52:14.1109671Z:testHTTP request failed.{"error": {"code": 502,"source": "flow-apim-msmanaged-na-northcentralus-01.azure-apim.net","clientRequestId": "f8a32b88-1b63-4317-ba04-2ba5a2c21599","message": "BadGateway","innerError": {"status": 502,"message": "The attempted operation is prohibited because it exceeds the list view threshold enforced by the administrator.\r\nclientRequestId: f8a32b88-1b63-4317-ba04-2ba5a2c21599\r\nserviceRequestId: db31099f-80c2-9000-0496-715c4af5a497","source":"https://mycompany.sharepoint.com/sites/test/_api/web/lists/GetByTitle('test')/items?$select=Title&$filter=Modified%20ge%20'September%2020,%202019'","errors": ["-2147024860","Microsoft.SharePoint.SPQueryThrottledException"]}}}

What I want:

2019-09-30T06:52:14.1109671Z:testHTTP request failed.

{
    "error": {
        "code": 502,
        "source": "flow-apim-msmanaged-na-northcentralus-01.azure-apim.net",
        "clientRequestId": "f8a32b88-1b63-4317-ba04-2ba5a2c21599",
        "message": "BadGateway",
        "innerError": {
            "status": 502,
            "message": "The attempted operation is prohibited because it exceeds the list view threshold enforced by the administrator.\r\nclientRequestId: f8a32b88-1b63-4317-ba04-2ba5a2c21599\r\nserviceRequestId: db31099f-80c2-9000-0496-715c4af5a497",
            "source": "https://mycompany.sharepoint.com/sites/test/_api/web/lists/GetByTitle('test')/items?$select=Title&$filter=Modified%20ge%20'September%2020,%202019'",
            "errors": [
                "-2147024860",
                "Microsoft.SharePoint.SPQueryThrottledException"
            ]
        }
    }
}

How can I:

  1. Get the new line after the timestamp?
  2. Prettify the body to be indented JSON?

Thank you!

Adding a space with enter is also no longer working for me

Me neither. 
I've tried:

1. Variable with single quote, ENTER, single quote

'
'

2. Variable with ENTER only, no quotes

3. ENTER between two dynamic values

None of these create a new line when using Append to String Variable.

@ericonline @sarahmcd9000 @v-bacao-msft 

try this in Notepad or whatever your favourite text editor is:

 

Concat(variables("VarName"), '
" this is a new line in the target object", '
" this is a new line in the target object")

Paste the above into your target object using Expression:

 

NewLine in Flow put in expression.PNG

 

 

this works for list columns in an Update, in Compose operations, and in variables

here is an example:

 

NewLine in Flow Variable.PNG

 

and the concatenated New Line in the list:

 

NewLine in Flow Variable showing in List.PNG

 

hope this helps - if it does, please mark it as solution

etalon
Frequent Visitor

This is an FYI for future me:  If your output is being viewed in HTML (ie a field for an email), just add <br> to the string that is being appended to create the line break.

manvinder277
Frequent Visitor

use concat and {" \n\n"} ... yes with double quotes

example >>> concat('string 1',{" \n\n"},'String 2')

 

This will output

string1

string2

@manvinder277   Does this still work for you?  When I try to use that concat expression, PAutomate flags the expression as invalid.

 

DeeTronSEAM_0-1616617929601.png

 

So far all I've found that works is to declare a variable and stick a linefeed in it, then use that variable where I want a linefeed.  E.g.

 

DeeTronSEAM_0-1616618612724.png

concat(
  body('Parse_JSON_of_the_filtered_Scenario_2_collection')?['ScenarioID']
  , '|'
  , body('Parse_JSON_of_the_filtered_Scenario_2_collection')?['AD_DisplayName']
  , '|'
  , body('Parse_JSON_of_the_filtered_Scenario_2_collection')?['AD_UserPrincipalName']
  , '|'
  , body('Parse_JSON_of_the_filtered_Scenario_2_collection')?['AD_Title']
  , variables('strLineFeedCharacter')
)

 

not working for me. Creating variable with space/enter and adding it into concat function.

then sending that concat variable into mail. 

Mail doesn't get new line. I tried all way. Don't know why its nt working. at run flow I am getting new line but in a  outlook mail box  , new line is not coming. Please help. trying since last 2 days.

 


I have initialized variable 'MailBody' where I have  If condition in Concat statement in it.

ex:

concat('I approve the below request:','
',if(equals(triggerOutputs()?['body/TYPE'],'ADP'),concat('Name : ',triggerOutputs()?['body/NAME'],'
','KBC : ',triggerOutputs()?['body/KBC'],'
','PQR : ',triggerOutputs()?['body/PQR']),concat('Name : ',triggerOutputs()?['body/NAME'],'
','XYZ : ',triggerOutputs()?['body/XYZ'],'
','ABC : ',triggerOutputs()?['body/ABC'],'
','EFG : ',triggerOutputs()?['body/EFG'])))

 

then I have added variable to the sent mail activity where I have link to create another mail then above mail body executes, I have tried all way(adding<br>, created variable with enter and added, <\n> line) to add new line but its not working. I am getting all the values in single line.

ex: Name:ValueXYZ:ValueABC:ValueEFG:Value

Expected: 

Name:Value

XYZ:Value

ABC:Value

EFG:Value

 

DeeTronSEAM
Kudo Collector
Kudo Collector

Hola, @nejhade 

 

Sorry to hear you're having problems with this.  I do know things change rapidly with PAuto and PApps, so it's quite possible that what worked before is something that doesn't anymore.  But, let me try to provide some ideas that might help you zero in on the fix:

 

I have many flows that send HTML emails using the Outlook "Send an email from a shared mailbox" action.  They do have line feeds galore in them...though they are HTML <br\> and <p></p> tags....and they properly create linebreaks in our users' Outlook email reader.   So, are you injecting your email body into the default body editor or the html editor in your Outlook email action?  E.g. ..

 

default:

DeeTronSEAM_3-1651546580601.png

 

 

versus what's there when you click on the editHTML button (aka <\>) all the way to the right:

DeeTronSEAM_2-1651546460919.png

 

As I'm not sure what action you're using for the email-Send, this may not be valid.  But I will say that if you're using the Outlook email sending actions, I strongly urge you to create your email body variable as HTML and ensure it contains proper HTML formatting.  That seems to work fine for me.....although there are many quirks about how Outlook renders HTML emails...something that many email marketing experts have posted many blog posts documenting, bitching, moaning, and sometimes circumventing.

 

Hope that helps.  Good luck.

 

As for creating a linebreak character, they way I do it now is different than the way I described above with a space and enter/return in a variable.  Now I use a formula that decodes the carriageReturn+lineBreak character codes (URI-encoded) :

DeeTronSEAM_0-1651545899313.png

 

value formula:  

decodeUriComponent('%0D%0A')
 
aka ASCII(13)+ASCII(10), aka CHAR(13)+CHAR(10), aka CrLf.
 
 

Thanks for the reply @DeeTronSEAM 

I am using HTML body only, it seems it works for primary mail sent, but not working for mail gets created on link create. refer below image.

I composed an action and concate it to my string(also used decodeUriComponent('%0D%0A')) , Problem is I am getting output in a flow as new line. but when email renders with a link it doesn't show new line in mail.

Please refer below image, I have a variable. 'RequestBody' which I am using in a mail template. As you see when user click on "Please click here to approve the request" then new email opens and that Requested body will be part of new mail. 

where I am not getting new line. I renders information in single line.

Image 1: Flow output after Run-getting new line in a flow run. but not in mail, when new mail creates from link. 

nejhade_1-1651642933496.png

 

Image 2: email body template. first mail works fine <br> working but when user click on a link to create a new mail which has 'requestbody' variable there new line, <br>, variable, nothing is working.

nejhade_0-1651642744575.png

Mail Output

nejhade_2-1651643127461.png

 

Any Idea on this. Many Thanks in Advance!

 

 

Hello ,

Posting solution here If someone need it in future. it worked for me.

Big Thanks to  @v-bofeng-msft For this solution.

 

If you want to wrap lines in the body of mailto, just add "%0d%0a" between lines.For example:

 

    concat('Name : ','Value','%0d%0a','KBC : ','Value','%0d%0a','PQR : ','Value') 

 

Regards,

Neha

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (827)