Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi
I'm about to load in a PDF to power query. The PDF is a long sales list and Power Query don't regonize that it's a big table, which means that every page has its own table. It's only the first page which has headers.
In some instances Power Query thinks there is 6 columns and in other only 5 columns. I should merge column 2, 3 and 4 when there i 6 columns and merge column 2 and 3 when there is 5 columns. Is there anyway you can count the total number of columns for each table and then put an if statement to merge the columns?
Best Regards
M. Schumacher
Hi @Schumacher ,
Could you tell me if your problem has been solved?
If it is, kindly Accept it as the solution. More people will benefit from it.
Or you are still confused about it, please provide me with more details about your problem.
Best Regards,
Stephen Tao
Hi @Schumacher ,
PDF to Power Query. Yuck 🤢
The basic structure would be something like this but, without seeing an example of your 5/6 column tables, it may not be perfect for your situation;
let
Source = aTable,
mergeCols =
if Table.ColumnCount(Source) = 5
then Table.CombineColumns(
Source,
{"Column2", "Column3"},
Combiner.CombineTextByDelimiter("", QuoteStyle.None),
"Merged"
)
else if Table.ColumnCount(Source) = 6
then Table.CombineColumns(
Source,
{"Column2", "Column3", "Column4"},
Combiner.CombineTextByDelimiter("", QuoteStyle.None),
"Merged"
)
else Source,
in
mergeCols
Pete
Proud to be a Datanaut!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |