Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys.
Is there a way to create a new column for this one? Below is an example of what we want to achieve.
Value is the original column.
Solved! Go to Solution.
Hi @non23, check this:
Output
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjU0NDIw0NMzNbS0MDCwNrW0NANzLUFcpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Value = _t]),
Ad_NewColumn = Table.AddColumn(Source, "New Column", each
[ a = Text.Split([Value], ";"),
b = List.Transform(a, (x)=> Text.Split(x, "..")),
c = List.Transform(b, (x)=> List.Generate( ()=> Number.From(x{0}), each _ <= Number.From(x{1}), each _ +100 ) ),
d = List.Combine(c)
][d]),
ExpandedNewColumn = Table.ExpandListColumn(Ad_NewColumn, "New Column")
in
ExpandedNewColumn
Hi @non23, check this:
Output
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjU0NDIw0NMzNbS0MDCwNrW0NANzLUFcpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Value = _t]),
Ad_NewColumn = Table.AddColumn(Source, "New Column", each
[ a = Text.Split([Value], ";"),
b = List.Transform(a, (x)=> Text.Split(x, "..")),
c = List.Transform(b, (x)=> List.Generate( ()=> Number.From(x{0}), each _ <= Number.From(x{1}), each _ +100 ) ),
d = List.Combine(c)
][d]),
ExpandedNewColumn = Table.ExpandListColumn(Ad_NewColumn, "New Column")
in
ExpandedNewColumn
Thank you @dufoq3. It works but there are some data in the column that doesn't have a list please see below sample:
May I know I should update the query please.
NewStep= Table.ExpandListColumn(Table.AddColumn(YourTable,"NewValue",each Expression.Evaluate("{"&Text.Replace([Value],";",",")&"}")),"NewValue")
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 7 | |
| 4 | |
| 3 |