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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.