I’ve created a variable called FullFileName and I now want to use an expression to say - if the file name is greater than 155 characters, take the first 155, otherwise take the whole name.
Getting an error saying the expression is invalid, can anyone spot what I’m doing wrong?
Solved! Go to Solution.
Hi @gm355 ,
You could take a try with expression below:
if(greater(length(variables('FullFileName')),155),substring(variables('FullFileName'),0,155),variables('FullFileName'))
I have made a test on my side, please refer to screenshot below to create the flow:
The expression in the Compose as below:
if(greater(length(variables('FullFileName')),5),substring(variables('FullFileName'),0,5),variables('FullFileName'))
The flow would run successfully as below:
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @gm355 ,
You could take a try with expression below:
if(greater(length(variables('FullFileName')),155),substring(variables('FullFileName'),0,155),variables('FullFileName'))
I have made a test on my side, please refer to screenshot below to create the flow:
The expression in the Compose as below:
if(greater(length(variables('FullFileName')),5),substring(variables('FullFileName'),0,5),variables('FullFileName'))
The flow would run successfully as below:
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
Watch Nick Doelman's session from the 2020 Power Platform Community Conference on demand!
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
19 | |
14 | |
11 | |
10 | |
9 |