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
I'm new in dax and here is my question; I have two tables(sql views) in tabular:
| Fact table | ||
| Key_col1 | Prodnr | col1 |
| 101 | P0005 | 517 |
| 102 | P0037 | 620 |
| 103 | P0074 | 240 |
and in table2
| Dimension table | ||
| Key_col2 | col2 | col3 |
| 102 | 620 | PE412 |
| 101 | 517 | AE309 |
| 103 | 240 | EF903 |
In tabular I've created a relation between two tables with their key columns and want to write a dax code that when I select for example P0074 from a slicer , it shows EF903 as a part of information in report.
If you want to do this in DAX you need to use either LOOKUPVALUE or TREATAS.
Why not do this in the model view though?
I resolved it by creating a new view.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |