March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I need to combine data from two tables.
Table A looks like this where Index Start and Index Stop map to Index in Table B.
Table B looks like this. The Index column lists only the values that span from Index Start to Index Stop for the records in Table A. The last index number is 62.
I want to combine these data to look like this.
The total record count in this example would be 52.
This is all in an effort to use PBI to read a structured report of user configurations (xlsx) and re-organize the data.
The data source looks like this.
Solved! Go to Solution.
Hi @Anonymous ,
I think you can add a custom column in Table A by this code in Power Query Editor.
Index =
{Number.From([Index Start])
..
if
[Index End] = null
then
List.Max(#"Table B"[Index])
else
Number.From([Index End])}
Then expand Index in Table A.
And then merge Table A and Table B by Index columns.
For reference: merge-queries-overview
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I think you can add a custom column in Table A by this code in Power Query Editor.
Index =
{Number.From([Index Start])
..
if
[Index End] = null
then
List.Max(#"Table B"[Index])
else
Number.From([Index End])}
Then expand Index in Table A.
And then merge Table A and Table B by Index columns.
For reference: merge-queries-overview
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You will need to pivot table A to then join to table B, so the results look like this:
User_ID, Index
4383961,3
4383961,4
4383961,5
4383961,6
4383961,7
4383961,8
4383961,9
I have seen this done in Power Query, but my Google-Foo failed me for an example.
Your biggest challenge will be getting the right # of records to fill in for table A.
After you get the right num of columns, go to 'column by example' to figure it out how to fill in the missing values for the index.
Power BI- Column From Example. In this article, we learn about the… | by Vaishali Goilkar | Medium
I hope this helps. Good luck.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
132 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |