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!
I need help to fix the folloing problem:
Some values when I import PDF are being alocated in the wrong place, grouped in a cell, leaving an empty place where the value should be.
Solved! Go to Solution.
Hello, @gtanaka try this
let
Source = your_table,
cols = Table.ToColumns(Source),
first = List.Combine(List.RemoveNulls(List.Transform(cols{0}, (x) => Splitter.SplitTextByDelimiter("#(lf)")(x)))),
res = Table.FromColumns({first} & List.Skip(cols, 1), Table.ColumnNames(Source))
in
res
Hello, @gtanaka try this
let
Source = your_table,
cols = Table.ToColumns(Source),
first = List.Combine(List.RemoveNulls(List.Transform(cols{0}, (x) => Splitter.SplitTextByDelimiter("#(lf)")(x)))),
res = Table.FromColumns({first} & List.Skip(cols, 1), Table.ColumnNames(Source))
in
res
thank you!!!
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 |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 5 | |
| 3 |