web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Print all screens as a...
Power Apps
Suggested Answer

Print all screens as a single document

(1) ShareShare
ReportReport
Posted on by 407
Hi all, 
 
I have a multi-screen canvas Power Apps, I would like the ability to print all screens into a single document. Can someone please point me in the right direction? 
 
When I select the Print() function, it only shows the current screen. Wondering if there's a way to compile all screens into a single one then pressing the Print() function to print all screens into a single doc. 
 
Thanks in advance.
Categories:
I have the same question (0)
  • Suggested answer
    SwatiSTW Profile Picture
    807 Super User 2026 Season 1 on at
    Unfortunately, in Power Apps, there is no built-in functionality to print all screens at once as a single document directly. The Print() function only prints the currently visible screen, and there's no direct way to compile all screens into a single one for printing. 
    However, there is a workaround to achieve this functionality by simulating the process of merging screens
    1. Create a Printable Screen
    Add a new screen, e.g., scrPrintable.
    Use containers, galleries, or other layout controls to structure the content.
    Copy or replicate the layout and components of each screen into this single screen.
    2. Transfer Data Dynamically
    Use collections or context variables to transfer the data between screens:
    // OnVisible of each screen, save data into a collection
    Collect(colScreenData, {Screen: "Screen1", Content: YourData});
    On the "Printable Screen," use these collections to dynamically populate the components:
    Filter(colScreenData, Screen = "Screen1");
    Repeat for each screen.
    3. Add Scrolling (If Needed)
    Use a vertical gallery or a scrollable screen for the "Printable Screen" to accommodate all the content.
    4. Add Print Button on the "Printable Screen" with the following OnSelect property
    Print();
    5. Navigation
    Add a button or another mechanism on the main screens to navigate to the "Printable Screen"
    Navigate(scrPrintable);
     
  • _sourcecod3_ Profile Picture
    407 on at
     
    Thanks for your response, As I was testing your proposed solution, I used a scrollable screen to fit all of the components within the other screens, but when I clicked on the Print() button, it only pulled up what was showing in the screen, not grabbing everything that's in the scrollable screen. 
     
    Any thoughts? 

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
Haque Profile Picture

Haque 94

#2
WarrenBelz Profile Picture

WarrenBelz 82 Most Valuable Professional

#3
Kalathiya Profile Picture

Kalathiya 38 Super User 2026 Season 1

Last 30 days Overall leaderboard