Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
aktripathi2506
Helper IV
Helper IV

Printing full table data from the table with scrollbar

 

I have 2 relavant questions:

 

  1. I have a table which has list of employee and their hours details. But since the list is too long it is having a vertical scrollbar.
    and I need to take the printout so all the name should come. Is there any way in power bi to get the entire list printed?
  2. If there is no way that we can get entire list printed, then I though I can break the one table into 2 tables; first table with have employee name starting with A to L and second table will have
    employee name starting with M to Z. In this case my question is how can I filter name from A to L and M to Z?

 

Thanks,

 

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @aktripathi2506

 

As to your second question, you can use below formula to create two calculate tables:

 

Table1 =
CALCULATETABLE (
    TableName,
    TableName,
    LEFT ( TableName[Name], 1 ) >= "A"
        && LEFT ( TableName[Name], 1 ) <= "M"
)

Table2 =
CALCULATETABLE (
    TableName,
    TableName,
    LEFT ( TableName[Name], 1 ) >= "L"
        && LEFT ( TableName[Name], 1 ) <= "Z"
)

Best regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
TomMartens
Super User
Super User

Hey,

 

currently there is no possibility available to print a table / slicer that exceeds the boundaries of the visualization in Power BI not to mention a scheduled "print" let's say to a pdf document.

 

To overcome this limitation I use the "Power BI Publisher for Excel" Excel add-in that you can find here

https://www.microsoft.com/en-US/download/details.aspx?id=50729

 

I have to admit that the name sounds a little bit strange, but this tool allows me to connect to a dataset / report in my Power BI service from within Excel.

 

What I'm doing or recommend if I want to print a table / slicer. I use the Publisher to connect to my dataset / report build a pivot table and then print the pivot from excel. Seems funny, but it works.

 

Hope this helps!

Tom 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hi Tom,

 

I am the admin for a few Workspaces but none seems to be able to connect, could you enlighten what'd be the possible underlying issues?

 

To your suggested approach, will that be the same if we were to export to Excel from the BI visual and pivot from there?

 

Kindly assist. Thank you!

 

Jacob

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.