Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
11 | |
11 | |
8 |
User | Count |
---|---|
24 | |
18 | |
12 | |
11 | |
10 |