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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I have two data tables Master Data Table and Comments Data Table both with connected via a relationship with the reference number.
I want to display the following fields in a final visual table Reference Number, Status and Comments
However when I add the Comments field the amount of lines reduces as some of the reference numbers will not have comments next to them. The final visual talbe is ignore the ones with no comments and only diplaying the ones with comments. I am asuming its ti do with not showing left join?
Master Data Table | ||
Reference Number | Status | |
112233 | Legal 1 | |
223344 | Legal 1 | |
334455 | Legal 2 | |
445566 | Legal 2 | |
556677 | Legal 1 | |
Comments Data Table | ||
Reference Number | Comment | |
112233 | Letter sent | |
223344 | Court action | |
Results Visual Table | ||
Reference Number | Status | Comment |
112233 | Legal 1 | Letter sent |
223344 | Legal 1 | Court action |
334455 | Legal 2 | |
445566 | Legal 2 | |
556677 | Legal 1 | |
What I am actually seeing | ||
Reference Number | Status | Comment |
112233 | Legal 1 | Letter sent |
223344 | Legal 1 | Court action |
can you please help
RIchard
Thank you for your quick response your suggestion also works fine
Perhaps create a Comments measure, something like:
Comments Measure = IF(ISBLANK(MAX('Comments Data Table'[Comment])),"none",MAX('Comments Data Table'[Comment]))
Use that in your visual instead of the Comment column.
Thank you for your quick response your suggestion works fine 😀
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.