Hi experts,
i'm trying to break line in web activity body. Below is how i'm trying
"ErrorMessage": "
TableName: @{activity('Lookup1').output.firstrow.tablename}\\nTableCount: @{activity('Lookup1').output.firstrow.tablecount}\\nAverageCount: @{activity('Lookup1').output.firstrow.avgcount}\\nPercentage: @{activity('Lookup1').output.firstrow.percentage}
",
i want my output like
TableName : <tableaname>
TableCount : <Count>
AverageCount : <AvgCount>
Percentage : <Percentage>
but right now it is all coming in single line without any break , like below
TableName : <tableaname>TableCount : <Count>AverageCount : <AvgCount>Percentage : <Percentage>
Can someone please help me?

