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! It's time to submit your entry. Live now!
Hi All,
I need some info where I have 2 tables without the relationship, I need to find SID value from another table if both matches Yes nor no.
what are the options in the direct query to handle this issue
Column1Column2
| Table 1 | ||
| ID | SID | |
| 1 | 7683739 | |
| 2 | 8790111 | |
| 3 | 7683739 | |
| Table 2 | Column1 | |
| SID | ||
| 7683739 | ||
| 7649463 | ||
| 7683739 |
Thank you
NG
Solved! Go to Solution.
@Anonymous,
Create a measure in Table 1 using DAX below:
Measure = CALCULATE(MAX('Table 1'[SID]), FILTER('Table 1', 'Table 1'[SID] in VALUES('Table 2'[SID])))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous,
Create a measure in Table 1 using DAX below:
Measure = CALCULATE(MAX('Table 1'[SID]), FILTER('Table 1', 'Table 1'[SID] in VALUES('Table 2'[SID])))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
| User | Count |
|---|---|
| 49 | |
| 37 | |
| 33 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 132 | |
| 100 | |
| 56 | |
| 37 | |
| 37 |