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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
tmul
Frequent Visitor

Table visual - split into to or more visuals?

Hi, 

I have the following problem. I am supposed to make a one pager with some information from several tables. 

I can display all the information in one table visual without any problem but then people need to scroll and do not have all the information available. 

I was wondering if there exists something like a table grid for Power BI which would be able to split one table into two or more to see more data in one view. 

Example: I would like to split this table in a visual! (not in PowerQuery)

KeyNameYear

1

A2000
2B2002
3C2000
4D2003
5E2004

into something like

KeyNameYear
1A2000
2B2002

and next to it should be a table like this:

KeyNameYear
3C2000
4D2003
5E2004

 

Any ideas? 

A few ideas are in my head like a measure which would only show the first x entires and then the rest. Or I have to create several tables in PowerQuery which I do not really want to do. 

 

Thanks for the help. 

Best

2 REPLIES 2
v-yadongf-msft
Community Support
Community Support

Hi @tmul ,

 

Is this the result you want?

vyadongfmsft_0-1665391842160.png

Please create 6 new columns like below:

Key1 = SWITCH(
    TRUE(),
    'Table'[Key] = 1,1,
    'Table'[Key] = 2,2,
    BLANK()
)

Name1 = SWITCH(
    TRUE(),
    'Table'[Key] = 1,"A",
    'Table'[Key] = 2,"B",
    BLANK()
)

Year1 = SWITCH(
    TRUE(),
    'Table'[Key] = 1,2000,
    'Table'[Key] = 2,2002,
    BLANK()
)

Key2 = SWITCH(
    TRUE(),
    'Table'[Key] = 1,3,
    'Table'[Key] = 2,4,
    'Table'[Key] = 3,5,
    BLANK()
)

Year2 = SWITCH(
    TRUE(),
    'Table'[Key] = 1,2000,
    'Table'[Key] = 2,2003,
    'Table'[Key] = 3,2004,
    BLANK()
)

Name2 = SWITCH(
    TRUE(),
    'Table'[Key] = 1,"C",
    'Table'[Key] = 2,"D",
    'Table'[Key] = 3,"E",
    BLANK()
)

vyadongfmsft_1-1665391887459.png

 

Create a table visual and put [Key2] into filters pane like below:

vyadongfmsft_3-1665392080662.png

Please refer the attached pbix file.

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@tmul , refer if this can help

https://www.fourmoo.com/2017/10/31/power-bi-how-to-do-pagination-in-power-bi-reports/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors