Hi @RezaDorrani,
Firstly, thank you for sharing the expressions #01 series on youtube. It helped me a lot. to understand expressions in Power Automate.
I have some queries.
Can you please help?
Others can help too if they know the solution.
Best,
Aakash
Solved! Go to Solution.
Hi @AakashJaiswal,
1. If only has 54 SharePoint calculate columns, it doesn't overload the limits of expression, the characters limitation is 131,072 characters. If you are familiar with calculate column in SharePoint, you could consider using it which will be easier achieved than expression.
Examples of common formulas in lists - SharePoint (microsoft.com)
2. You could use expression empty() to check if each column is true. Then use if() function to switch output. For example:
if(empty(variable('columnA')),0,variable('columnA'))
3. The add() function only accepts two parameters, add(<summand_1>, <summand_2>). So if 8 columns add, the expression will be as below:
add(add(add(column1,column2),add(column3,column4)),add(add(column5,column6),add(column7,column8)))
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @AakashJaiswal,
1. If only has 54 SharePoint calculate columns, it doesn't overload the limits of expression, the characters limitation is 131,072 characters. If you are familiar with calculate column in SharePoint, you could consider using it which will be easier achieved than expression.
Examples of common formulas in lists - SharePoint (microsoft.com)
2. You could use expression empty() to check if each column is true. Then use if() function to switch output. For example:
if(empty(variable('columnA')),0,variable('columnA'))
3. The add() function only accepts two parameters, add(<summand_1>, <summand_2>). So if 8 columns add, the expression will be as below:
add(add(add(column1,column2),add(column3,column4)),add(add(column5,column6),add(column7,column8)))
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join digitally, March 2–4, 2021 to explore new tech that's ready to implement. Experience the keynote in mixed reality through AltspaceVR!
Power Platform release plan for the 2021 release wave 1 describes all new features releasing from April through September 2021.
User | Count |
---|---|
88 | |
58 | |
42 | |
37 | |
36 |
User | Count |
---|---|
85 | |
72 | |
61 | |
56 | |
40 |