Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hello I have two tables. The first is a list of transactions which represent customers changing their product service from one thing to another. The order ID is unique in this table.
Order ID | original product id | new product id | change date |
1 | 123 | 875 | 02/11/2022 |
2 | 561 | 123 | 04/09/2022 |
3 | 454 | 561 | 10/10/2022 |
The second table is a list of all products that the customer has and the date that each product service started. In this table the order id is not unique.
Order ID | customer id | product id | start date |
1 | A | 123 | 02/09/2021 |
1 | A | 699 | 06/06/2021 |
1 | A | 747 | 10/04/2021 |
2 | B | 561 | 01/01/2022 |
3 | C | 123 | 06/07/2020 |
3 | C | 454 | 05/08/2021 |
I would like to create a new column in the first table which has the date that the original plan was created like so:
Order ID | original product id | new product id | change date | original product start date |
1 | 123 | 875 | 02/11/2022 | 02/09/2021 |
2 | 561 | 123 | 04/09/2022 | 01/01/2022 |
3 | 454 | 561 | 10/10/2022 | 05/08/2021 |
I have tried using CALCULATE with RELATEDTABLE and FILTER, kind of like this:
But this results in a 'Circular dependency detection error'.
I have also tried the LOOKUPVALUE function like so:
But this results in the multiple values being returned : "A table of multiple values was supplied where a single value was expected."
Any help would be much appreciated.
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Original product start date CC =
MAXX (
FILTER (
RELATEDTABLE ( Table2 ),
Table2[product id] = Table1[original product id]
),
Table2[start date]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
This did the trick. Thanks for your help!
Hi,
Please check the below picture and the attached pbix file.
Original product start date CC =
MAXX (
FILTER (
RELATEDTABLE ( Table2 ),
Table2[product id] = Table1[original product id]
),
Table2[start date]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
19 | |
18 | |
18 | |
15 |
User | Count |
---|---|
52 | |
35 | |
24 | |
22 | |
21 |