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!Get Fabric certified for FREE! Don't miss your chance! Learn more
Hi All,
I need to understand how to use merged queries so that only 1 column is used to display data from 2 tables.
For ex Table1.VendorID merged with Table2.VendorID with full outer join.
If I use Table1.VendorID in Table visual it would show all data from Table1 but only matching data form Table2 and other way if I select Table2.VendorID
How can I use vendor column in report so that all data from Table1 and Table2 is displayed irrespective data is avialble or not?
Any thought here please.
Thanks
Hi @Anonymous,
Perhaps you can try to create a calculated table to union two table key column values and add custom column fields to lookup correspond field values from two tables based on the key field.
Regards,
Xiaoxin Sheng
Hi @Anonymous
Create a new column in either DAX or M.
Given that you name your first Vendor ID column as VendorIDTable1 and the second Vendor ID column VendorIDTable2:
In DAX, use this formula:
VendorID-All = IF(ISBLANK([VendorIDTable1]),[VendorIDTable2],[VendorIDTable1])
In M, use this formula:
VendorID-All = if [VendorIDTable1] = null then [VendorIDTable2] else [VendorIDTable1]
These 2 formulas should fill up the Vendor IDs.
Hi @Anonymous
It should not be very tough to crack, please share your pbix file after deleting any pii data.
I can have a look at it and will let you know about the solution for the same.
Thanks,
Ankit Kukreja
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 70 | |
| 60 | |
| 47 | |
| 20 | |
| 16 |