I'm trying to save a collection as PDF but i can't do it directly i've been searching ways to do it and the solution i've seen most is to transform the collection into HTML and then save it as a PDF but i don't know how to do it. In Powerapps
As I said, I have a collection of items selected from a gallery but each item is a form so it has a lot of fields so i have to transform that collection into HTML because i can't save the collection directly as a PDF. I have this formula which allows me to save an item from a gallery into PDF i need to change the contentBytes part in a way that allow me to save the collection into PDF: orAll(SelectedKontrolleItems;GuardarPDF.Run({file:{name:Concatenate(ThisRecord.ID;"_";ThisRecord.Nombre;".pdf");contentBytes:PDF(Container1_1;{ExpandContainers: true ;Size:PaperSize.A4})}}) )