Hi guys, I have created the below flow, sending the attachments to a SP site, but it seems to pull anything as an attachment (signature icons etc). Is there a way to filter on file type, i.e. .xlsx? Struggling to work some of the functions out, and just when I think I have it, I don't.
Solved! Go to Solution.
Hi @Karmik,
You could add a condition action within the apply to each (before the create file) to check for the name of the files and use an endswith function.
Below is an example which checks for the .csv extension.
The left column before the is equal to operator is using the following expression.
endsWith(items('Apply_to_each')?['name'], '.csv')
Hope this helps a bit?
Hi @Karmik,
You could add a condition action within the apply to each (before the create file) to check for the name of the files and use an endswith function.
Below is an example which checks for the .csv extension.
The left column before the is equal to operator is using the following expression.
endsWith(items('Apply_to_each')?['name'], '.csv')
Hope this helps a bit?
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
3 | |
3 | |
2 | |
1 | |
1 |
User | Count |
---|---|
13 | |
11 | |
6 | |
6 | |
5 |