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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

How to use list.range function dynamically?

I have table:

 

CategoryJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecember
A-B28875701782363300000000
C-D00117226416314304341836054123000
E,F,G00000035583008261326174813188
H-K00000000602120410112699
L00000000000380

 

I want output of category column like containing rows of H,I,J,K as well when i use split column with delimeters.

How do I do the same dynamically?

How can i use list.range function with text.beforedelimiter and text.afterdelimiter to get rows of H,I,J,K as well in column 'Category'?

 

1 ACCEPTED SOLUTION
artemus
Microsoft Employee
Microsoft Employee

The goal here is to change the Category column into a list, then use expand list column to get copies of rows for each category.

 

Looking at this, there appears to be 3 kinds of categoreies:

  • Single letters like "L"
  • Enumerated letters like "E,F,G"
  • A range of letters like "H-K"

To do this you will need to create a custom column that produces a list of categories:

= if Text.Length([Category] = 1 then
   [Category]
else if Text.At([Category], 1) = "-" then
   {Text.At([Category], 0) .. Text.At([Category], 2)}
else if Text.Contains([Category], ",") then
   Text.Split([Category], ",")
else
   error "Unknown category format"

Note that the .. operator only works for single letter text values.

 

After this, just remove the origional category column, and use "Expand list column" on your new column

View solution in original post

1 REPLY 1
artemus
Microsoft Employee
Microsoft Employee

The goal here is to change the Category column into a list, then use expand list column to get copies of rows for each category.

 

Looking at this, there appears to be 3 kinds of categoreies:

  • Single letters like "L"
  • Enumerated letters like "E,F,G"
  • A range of letters like "H-K"

To do this you will need to create a custom column that produces a list of categories:

= if Text.Length([Category] = 1 then
   [Category]
else if Text.At([Category], 1) = "-" then
   {Text.At([Category], 0) .. Text.At([Category], 2)}
else if Text.Contains([Category], ",") then
   Text.Split([Category], ",")
else
   error "Unknown category format"

Note that the .. operator only works for single letter text values.

 

After this, just remove the origional category column, and use "Expand list column" on your new column

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.