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
ompowerbi
Helper I
Helper I

Incomplete Mapping Table

Hi, I have two tables, the first is like this:

CountrySales
France£10000
UK

£5500

UK

£6000

Italy

£2000

I then have a second table:

CountryCode
FranceFR
UKUK

 

I create a relationship between the tables and want to make a complete table like this:

CountrySales Code
France£10000FR
UK

£5500

UK

UK

£6000UK

Italy

£2000

 

There is no mapping for Italy. Above is the result I want. The result I get is:

CountrySales Code
France£10000FR
UK

£5500

UK

UK

£6000UK

 

Italy is excluded as it has no mapping value. How can I make it so if there is no mapping value it just returns blank and the table simply fills in what it can. Thanks. 

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @ompowerbi ,

Here are the steps you can follow:

1. Create calculated table.

Table =
SUMMARIZE(
    'Table1','Table1'[Country],'Table1'[Sales],"1",
    MAXX(FILTER(ALL(Table2),'Table2'[Country]='Table1'[Country]),[Code])
)

2. Result:

vyangliumsft_0-1663316446650.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

4 REPLIES 4
v-yangliu-msft
Community Support
Community Support

Hi  @ompowerbi ,

Here are the steps you can follow:

1. Create calculated table.

Table =
SUMMARIZE(
    'Table1','Table1'[Country],'Table1'[Sales],"1",
    MAXX(FILTER(ALL(Table2),'Table2'[Country]='Table1'[Country]),[Code])
)

2. Result:

vyangliumsft_0-1663316446650.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Genius 

AnthonyJoseph
Resolver III
Resolver III

Hi @ompowerbi ,

 

Can you try "Merge query" in Power query editor to get the "Code" column and then filter the row that are not blank....

 

Thanks,

AnthonyJoseph

Thank you, bit unsure of how Merge Query works I apologise

 

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.

Top Solution Authors