Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello, I am having two tables in below format (sample) one for Nov Rate and one for December rate. I need to create report combining these two tables.
How can i map two tables when there is no unique columns values to map these tables.?
Also, I need to add aditional columns after merging two tables?
Subscription | InstanceID | Category | November Rate |
Sub1 | 123 | ABC | 10 |
Sub1 | 123 | DEF | 10 |
Sub2 | 1234 | ABC | 10 |
Sub3 | 456 | XYZ | 10 |
Subscription | InstanceID | Category | DEC Rate |
Sub1 | 123 | ABC | 10 |
Sub1 | 123 | DEF | 10 |
Sub2 | 1234 | ABC | 10 |
Sub3 | 456 | XYZ | 10 |
Solved! Go to Solution.
Hi @mrvamsidhar,
As per my understaning, you are trying to merge two tables which means you want a new table containing all the columns in Nov Table and Dec Table, right?
If that is the case, to address the problem that there is no unique column values to map tables, you can combine three columns into a single one as unique column.
Repeat above step in Dec Table. Then, you can merge these two tables.
Alternatively you can achieve the same result using DAX. Just use LookUp value to fetch the [DEC Rate] from Dec Table and insert into Nov Table.
December Rate = LOOKUPVALUE ( Dec[DEC Rate], Dec[Subscription], Nov[Subscription], Dec[InstanceID], Nov[InstanceID], Dec[Category], Nov[Category] )
To your second requirement, what do you mean add aditional columns after merging two tables? What aditional columns do you want to add? You can add calculated column via writing DAX formula. Also, in query editor, under the Add Column pane in the top ribbon, you can select to create custom columns.
If I have something misunderstood, please correct me and provide more description about your expect result.
Thanks,
Yuliana Gu
Cool My dear friend ,
We can go with Power Query, in there we can merge the two tables
Thank You very much. It helped me.
I had one more question on custome column- http://community.powerbi.com/t5/Desktop/Adding-Custom-Column-Parsing-Existing-Column/td-p/111618.
Can you help me on this?
Hi @mrvamsidhar,
As per my understaning, you are trying to merge two tables which means you want a new table containing all the columns in Nov Table and Dec Table, right?
If that is the case, to address the problem that there is no unique column values to map tables, you can combine three columns into a single one as unique column.
Repeat above step in Dec Table. Then, you can merge these two tables.
Alternatively you can achieve the same result using DAX. Just use LookUp value to fetch the [DEC Rate] from Dec Table and insert into Nov Table.
December Rate = LOOKUPVALUE ( Dec[DEC Rate], Dec[Subscription], Nov[Subscription], Dec[InstanceID], Nov[InstanceID], Dec[Category], Nov[Category] )
To your second requirement, what do you mean add aditional columns after merging two tables? What aditional columns do you want to add? You can add calculated column via writing DAX formula. Also, in query editor, under the Add Column pane in the top ribbon, you can select to create custom columns.
If I have something misunderstood, please correct me and provide more description about your expect result.
Thanks,
Yuliana Gu
Hello, Any update on this please?
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
105 | |
95 | |
38 | |
30 |