Forum Discussion
aktripathi2506
Helper IV
9 years agoPrinting full table data from the table with scrollbar
I have 2 relavant questions: 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 print...
v-yulgu-msft
Microsoft Employee
9 years ago
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