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
Dear Team,
I have semantic model loaded in Power BI where there is no relationship between 3 tables.
all three table are independent unable to merge it since its semantic model.
table 1 table 2 table 3
Product region value
apple US 100
orange China 59
banana Denmark 40
result need in table 2 as Column = If table 1 contain 'apple' and table 2 contain 'US' then "US Apple" else table 1
Thanks!
You can create a calculated column in Table 2:
Result =
IF(
CONTAINS(
'Table1',
'Table1'[Product], "apple"
) && 'Table2'[region] = "US",
"US Apple",
'Table1'[Product]
)
Issue : a single value for column x in table y can be determined.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |