This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi All, I have a query that I can't seem to figure out. Do to one of my tables having information and not having a relationship with other I wanted to see if there is someway I could compare the two tables to get the information I am wanting. This doesn't explain it well so I will post what I am wanting.
SR_Service Table
| TicketNbr | UrgencyID | SLA_RecID | Resolution_Hours |
| 123222 | 7 | 2 | |
| 123223 | 9 | 5 | |
| 123224 | 7 | 4 |
SR_SLAPriority Table
| SR_RecID | UrgencyID | Resolution_Hours |
| 2 | 7 | 10 |
| 2 | 8 | 20 |
| 2 | 9 | 30 |
| 5 | 7 | 50 |
| 5 | 8 | 100 |
| 5 | 9 | 150 |
| 4 | 7 | 20 |
| 4 | 8 | 30 |
| 4 | 9 | 40 |
Basically what I am wanting is to create a new column in the first table to compare the frist two values with the second table and pull the resolution hours. Is that possible like this:
SR_Service Table
| TicketNbr | UrgencyID | SLA_RecID | Resolution_Hours |
| 123222 | 7 | 2 | 10 |
| 123223 | 9 | 5 | 150 |
| 123224 | 7 | 4 | 20 |
Solved! Go to Solution.
You should try to relate them. What I would do is create a composite key by concatenating two fields into 1 and joining the two tables together on the newly created fields.
UrgencyId & SLA_RecID = 7 &"|"& 2
UrgencyID & SR_RecID = 7 &"|"& 2
@slounsbury you should try the function LOOKUPVALUE, in this link there's a explanation of how it works
https://www.sqlbi.com/articles/lookup-multiple-values-in-dax/
I hope it helps you.
You should try to relate them. What I would do is create a composite key by concatenating two fields into 1 and joining the two tables together on the newly created fields.
UrgencyId & SLA_RecID = 7 &"|"& 2
UrgencyID & SR_RecID = 7 &"|"& 2
This worked great! Thank you.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 42 | |
| 41 | |
| 21 | |
| 18 |