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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
HasnainNB
New Member

Mege Table Issue

When I tried to merge queries,the merge with dropdown is blank. As you can see in this screenshot.

Merge Tables.png

8 REPLIES 8
v-kpoloju-msft
Community Support
Community Support

Hi @HasnainNB,

Thank you for reaching out to the Microsoft Fabric Community Forum. Also, thanks to @Omid_Motamedise@AnkitKukreja@MasonMA@vojtechsima,  for those inputs on this thread.

Has your issue been resolved? If the response provided by the community member @Omid_Motamedise@AnkitKukreja@MasonMA@vojtechsima,  addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.

Hope this helps clarify things and let me know what you find after giving these steps a try happy to help you investigate this further.

Thank you for using the Microsoft Community Forum.

Hi @HasnainNB,

Just wanted to follow up. If the shared guidance worked for you, that’s wonderful hopefully it also helps others looking for similar answers. If there’s anything else you'd like to explore or clarify, don’t hesitate to reach out.

Thank you.

Omid_Motamedise
Super User
Super User

@HasnainNB 

It usualy caused when the other queries lead to an error, but in your case, it seems it is not the issue.


If my answer helped solve your issue, please consider marking it as the accepted solution.
AnkitKukreja
Super User
Super User

Hi! @HasnainNB 

 

Please try to refresh all queries and ensure that other tables have the headers to be used for merge. Also try using this in the latest version of Power BI desktop as suggested by others.

 

 

 

For Power BI trainings or support dm or reach out to me on LinkedIn.
If my response has successfully addressed your question or concern, I kindly request that you mark this post as resolved. Additionally, if you found my assistance helpful, a thumbs-up would be greatly appreciated.

Thanks,
Ankit Kukreja
www.linkedin.com/in/ankit-kukreja1904
MasonMA
Community Champion
Community Champion

Hi, 

 

Your Power Query UI looks a bit different from mine on the far right. I can still see 'Azure machine learning' and 'Text Analytics' which are both retired from Power Query or Power BI Desktop. 

 

My own assumption is this would be a UI glitch from old version and i would suggest updating your Power BI to the latest version to give it another try. 

vojtechsima
Super User
Super User

Hey, @HasnainNB ,

On why this happens, check responses from others; however, I think it's valuable to also know an extremely simple workaround and learn some M on the way. It's gonna allow you to also merge steps inside a single query.

 

The clicking merge will output these two steps:

= Table.NestedJoin(table1, {"column1"}, table2, {"column1"}, "newMergeColumn", JoinKind.LeftOuter //type of join)

 You can simply click add step button and write it yourself and define it for your needs:

vojtechsima_0-1766835822285.png

 

If you want to use more columns to construct a key, you just add them to the list like this {"col1", "col2"}, on each side.

 

Tables are basically also steps (that return a table), so you can simply reference inner steps inside a query to join stuff together.






Any kudos or recognition appreciated. To learn more on the topic, check out my blog and follow me on LinkedIn.
cengizhanarslan
Solution Sage
Solution Sage

This usually happens when Power Query can’t render the preview of the second table, not because Merge itself is broken.

 

Most common causes (check in this order):

  1. Table has an error in earlier steps
    Open the other query directly and make sure it loads rows without errors (red “Error” values).

  2. The query returns zero rows at preview time
    For example:

  • Filter step removes all rows

  • Parameter-driven query with no default value
    Merge dropdown will appear blank if there’s nothing to preview.

  1. Query depends on another query that’s disabled or broken
    If the target query references another query that fails, Merge can’t show it.

  2. Data source privacy / credentials issue
    Go to Data source settings → make sure credentials are valid and privacy levels are not blocking evaluation.

_________________________________________________________
If this helped, ✓ Mark as Solution | Kudos appreciated
Connect on LinkedIn
johnbasha33
Super User
Super User

Hi @HasnainNB 

Here are the most common causes + fixes (in order of likelihood):

1) The other “tables” are not actually tables in Power Query

The Merge dropdown only lists queries that return a table. If a query returns a list / record / scalar / parameter, it won’t appear.

Check:

  • Click each query on the left and confirm the preview shows a table with columns.
  • If you see List, Record, or a single value → that query won’t show up.

Fix:

  • Convert it to a table (Transform → To Table) or adjust the query to output a table.

2) Query preview is failing (so PQ can’t load candidates)

If any query has an error in preview or step evaluation, Power Query sometimes fails to populate the merge list.

Check:

  • Look for queries showing Error in the preview pane or in the status bar.
  • Check Applied Steps for error icons.

Fix:

  • Resolve the error OR temporarily disable the failing step(s).
  • Then try Merge again.

3) You’re inside a query context that limits what can be merged

Sometimes you’re editing a query that’s a function, parameter, or connection-only staging query and the merge UI behaves oddly.

Fix:

  • Try merging from a “normal” query that clearly loads a table (e.g., one of your Lookup tables).
  • Or duplicate the query (Right click → Duplicate) and try merging in the duplicate.

4) Privacy / firewall settings blocking combining data sources

Power Query can block combining sources depending on privacy levels (“Formula.Firewall”), and the UI can get weird.

Fix (quick test):

  • File → Options and settings → Options
    • Privacy: set to Ignore the Privacy Levels (temporarily, just to test)
    • Or set both sources to the same privacy level (Organizational)

If it suddenly works, it’s a privacy/firewall configuration issue.

5) Power Query cache/UI glitch

This happens more than people expect.

Fix:

  • Close Power Query Editor
  • File → Options and settings → Options → Data LoadClear cache
  • Reopen PBIX / workbook
  • Try again

Also try toggling:

  • Options → Data Load → “Allow data preview to download in the background” (turn OFF, restart)

6) Data source is fine, but columns aren’t loaded yet

If the preview hasn’t fully loaded or is stalled, the merge dialog can show blank.

Fix:

  1. Click Refresh Preview on the query you’re merging from.
  2. Wait for preview to fully load.

Retry Merge.

Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors