So I have a table containing lots of data about tickets.
There are multiple IDs in this table. The meaning of these IDs are stored in another table (all in the same table).
Example data table 1
TicketID IssueType Status
1 1 3
2 1 7
3 3 4
4 9 3
Example data table 2
Property Label Value
IssueType Printer 1
IssueType Backup 3
IssueType Sales 9
Status New 3
Status Complete 4
Status Waiting Customer 7
I want the numbers from the first table to be replaced with the Label data matching with the Property. How can I do this?
Example solution:
TicketID IssueType Status
1 Printer New
2 Printer Waiting customer
3 Backup Complete
4 Sales New
I tried to use Combine Query's but that requires me to filter in the second table, and as soon as I remove that filter the correct Label isn't shown anymore. Thanks in advance.