Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
RSchaef
Regular Visitor

Create a new table with columns from existing tables

Hi there, 

I am really new to Power BI and am excited about the opportunities with it.

 

I am doing somehting that seems simple, but I am struggling.

 

I work in the automotive industry.

 

I have one table (Sales Table) that has all the vehicles we have sold and one table that shows all the vehicles we have purchased and how they were purchased (Purchases Table).

 

Both tables are related by the vehicle VIN - 17 digits.

 

I want to make a new table that compares the VINs on the Sales table with the VINs on the Purchases Table and if the VIN on the Sales table is listed on the Purchases Table, I want a result of "Lead" and if the VIN on the Sales Table is not on the Purchases Table, then a result of NON LEAD.  

 

I then want to put LEAD and NON LEAD as a chicklet slicer to filter data.

 

Help please!

1 ACCEPTED SOLUTION
stretcharm
Memorable Member
Memorable Member

There are several ways you could do this.

 

You can do it in query editor by createding a merge as new of the 2 tables.

A conditional formated expression would allow the LEAD/NON LEAD Status.

A chicklet or sliced would let you filter this merged table but not the other tables unless they are also joined.

 

I would probably join the 2 tables and add a new computed column on the Sales table to see if there is a match.

LeadStatus = if(ISBLANK(RELATED(Purchases[VIN])), "LEAD","NOT LEAD")

 

 

View solution in original post

2 REPLIES 2
stretcharm
Memorable Member
Memorable Member

There are several ways you could do this.

 

You can do it in query editor by createding a merge as new of the 2 tables.

A conditional formated expression would allow the LEAD/NON LEAD Status.

A chicklet or sliced would let you filter this merged table but not the other tables unless they are also joined.

 

I would probably join the 2 tables and add a new computed column on the Sales table to see if there is a match.

LeadStatus = if(ISBLANK(RELATED(Purchases[VIN])), "LEAD","NOT LEAD")

 

 

Thank you!  Worked great

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.