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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! 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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors