English 中文(简体)
Extracting certain text from rows in a collection in power apps
原标题:

Im working on a flow which exports a uri link of an svg file, stored in a collection and returns it as a svg. For refrence here is that flow:

here im taking the uri , using the inbuilt function and then replacing the text data:image/svg xml with a blank because it causes an error while making the SVG. This was while i was doing it for one argument.

enter image description here

This is what the collection looks like.

enter image description here

now i have a collection of uri links that i want to do the same with. While exporting all of them together would be a good way , even seperate svg file is fine as long as i can send them together in one email.

Tried doing this but here its merging both of the files together, is there a way to take input one by one

enter image description here

i want different svg files for each svg URI

问题回答

You should definitely use ForAll() in PowerApps on your collection of raw SVGs and call the flow separately for each one, rather combining all files into a single text and then separate it again in Power Automate.

Thus your Power Automate logic will remain simple, reusable, easier to debug, etc.





相关问题
How to simplify SVG code?

Is it possible to simplify / clean up svg code by replacing the use-tags with standard svg elements? Maybe an inkscape plugin? Haven t found anything... Background: I m converting some svgs to javafx ...

How to link from SVG?

What I tried is this <a xlink:target="http://ponyoverflow.com"> <text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text> </a> and variations with href ...

Ruby Support for SVG

Is there some library or helper to produce SVG graphics with Ruby? I googled a bit and found many, but all seem to be dusty and very incomplete… Does anyone know about some nice, reliable alternative?

Mangling IDs and References to IDs in XML

I m trying to compose xml elements into each other, and the problem I am having is when there s the same IDs. Basically what I need to do is mangle all the IDs in an xml file, as well as the ...

热门标签