Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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!!!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.