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
Anonymous
Not applicable

Calculated Table

Hello Trying to get a top n and others calculation going on for some visuals I created a calculated table to get distinct names from a client table using this 

Customers Plus Others =
Union(
VALUES(ClientType[Client]), --get table of all customer names
Row( "Customers", "Others") --get table of Others
)
Table shows up correctly on visual no problem , now when I try to add my total tonnage measure, the same amount gets repeated
this is the measure for total tonnage: 
Total Tons = SUM('Sales Values'[Tonnage])
cmgp01_0-1631910375246.png

How can i fix this? the client type table has a relationship with the sales values table if I use the customer names from the client Type table I have no problems the only thing I don't have a "Others"row

cmgp01_1-1631910570454.png

 

 
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

This woks but not what I was looking for since I am crating a top n with an "Others" row. I found the solution by creating another measure: 

Total Tons 2 = CALCULATE ( SUM ( 'Sales Values'[Tonnage] ), TREATAS ( VALUES ( 'Customers Plus Others'[Customers]), ClientType[Client] ) )
 
and this gives me the result I was looking for cmgp01_0-1632224834116.png

 

Thanks for your help!!

View solution in original post

6 REPLIES 6
v-yingjl
Community Support
Community Support

Hi @Anonymous ,

If not want to use the relationship in the previous table, you can create the calculated table like this:

Customers Plus Others = UNION('ClientType','Customers')

Create the total measure:

Total =
CALCULATE (
    SUM ( 'Sales Values'[Tonnage] ),
    FILTER (
        'Sales Values',
        'Sales Values'[ID] IN DISTINCT ( 'Customers Plus Others'[ID] )
    )
)

vyingjl_0-1632187803424.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

This woks but not what I was looking for since I am crating a top n with an "Others" row. I found the solution by creating another measure: 

Total Tons 2 = CALCULATE ( SUM ( 'Sales Values'[Tonnage] ), TREATAS ( VALUES ( 'Customers Plus Others'[Customers]), ClientType[Client] ) )
 
and this gives me the result I was looking for cmgp01_0-1632224834116.png

 

Thanks for your help!!

Anonymous
Not applicable

This woks but not what I was looking for since I am crating a top n with an "Others" row. I found the solution by creating another measure: 

Total Tons 2 = CALCULATE ( SUM ( 'Sales Values'[Tonnage] ), TREATAS ( VALUES ( 'Customers Plus Others'[Customers]), ClientType[Client] ) )
 
and this gives me the result I was looking for cmgp01_0-1632224834116.png

 

Thanks for your help!!

Syndicate_Admin
Administrator
Administrator

@cmgp01 See if this works.

 

Table # 1

 

ponnusamy_1-1631972435314.png

 

 

Table # 2

ponnusamy_2-1631972447372.png

 

Table # 3 (Sale Fact)

ponnusamy_3-1631972473366.png

 

Union Table (DAX)

 

ponnusamy_4-1631972510273.png

 

ponnusamy_5-1631972542763.png

 

Result

 

ponnusamy_6-1631972585250.png

 

 

Syndicate_Admin
Administrator
Administrator

@cmgp01 See if this works.

 

Table # 1

 

ponnusamy_1-1631972435314.png

 

 

Table # 2

ponnusamy_2-1631972447372.png

 

Table # 3 (Sale Fact)

ponnusamy_3-1631972473366.png

 

Union Table (DAX)

 

ponnusamy_4-1631972510273.png

 

ponnusamy_5-1631972542763.png

 

Result

 

ponnusamy_6-1631972585250.png

 

 

ponnusamy
Solution Supplier
Solution Supplier

@Anonymous See if this works.

 

Table # 1

 

ponnusamy_1-1631972435314.png

 

 

Table # 2

ponnusamy_2-1631972447372.png

 

Table # 3 (Sale Fact)

ponnusamy_3-1631972473366.png

 

Union Table (DAX)

 

ponnusamy_4-1631972510273.png

 

ponnusamy_5-1631972542763.png

 

Result

 

ponnusamy_6-1631972585250.png

 

If this post helps, then please consider Accepting it as the solution, Give Kudos to motivate the contributors.

 

 

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
Top Kudoed Authors