Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Unanswered

PDF Export Content Not Expanding

(0) ShareShare
ReportReport
Posted on by 4
Hello,
 
How to get the PDF export to display all entered scrollable content?
 
 
QUADReport Screen...

Your file is currently under scan for potential threats. Please wait while we review it for any viruses or malicious content.

  • Rajkumar_M Profile Picture
    3,693 Super User 2025 Season 1 on at
    PDF Export Content Not Expanding
    Hi 
     
    I tried this method to get a PDF from scrollable content.
     
    I placed a container and added a Fluid Grid Canvas control inside it, then placed my content inside a card within the control. This worked fine for me. 
     

    To add a Fluid Grid Canvas in a Canvas app, create a new Scrollable Screen, cut the Fluid Grid control, and paste it into your container.
     
     
    Send Mail button Try this formula,
     
    Office365Outlook.SendEmailV2(
        User().Email,
        "Your PDF is attached",
        "Please find the attached PDF.",
        {
            Attachments: Table(
                {
                    ContentBytes: PDF(
                        Container3,
                        {
                            Orientation: PaperOrientation.Portrait,
                            //Portrait or Landscape
                            DPI: 150,
                            Size: PaperSize.A4,
                            //Select your page size
                            ExpandContainers: true,
                            /* This property makes sure the full content of gallery/containers is expanded as PDF */
                            Margin: "2.5mm"// Expand content of gallery/containers as PDF
                        }
                    ),
                    Name: "Export.pdf"
                }
            )
        }
    );
     
    Thanks!
     
    If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1