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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Syndicate_Admin
Administrator
Administrator

How to reference value from a list in split function

Hi there,

 

I am trying to split a column by values from a list. I got the list ready and now wonder how I could reference the values from this list in the split column function. I don't want to manually update the position as the number could change. Tried multiple ways and searched online, but no luck.

 

Thank you so much! 

 

 

1 REPLY 1
Vijay_A_Verma
Most Valuable Professional
Most Valuable Professional

If you split it in Rows not in columns, then you just need to specify the PositionList.

Select your columns and while splitting choose Rows in place of Column under Advanced. Put any dummy value say 3 as position. Once split done, in formula bar, replace this 3 with name PositionList.

You will get this kind of split

= Table.ExpandListColumn(Table.TransformColumns(Source, {{"Text", Splitter.SplitTextByPositions(PositionList)}}), "Text")

We can make formula for vertical split as well but in my view this much complexity is not needed and also for Power BI, it is longer table rather than wider table which is needed.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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