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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Amit92
New Member

Using Treatas without Filtering the Dataset

Hi Everyone, 

Hope you are doing good.

I have 2 sample datasets as below:

Amit92_0-1747839426388.png

 

I have created a measure named 

Amt_Total_Treatas  = 
CALCULATE(SUM(Amt[Amt]), TREATAS(VALUES('Group'[Cust]), Amt[Cust]))

I created this measure because i need to filter the Amt[Amt] from the Group table without creating relationship.
But when i checked the value of this measure, it only shows the amount for customers present in the Group table, (not those custs which absent in the Group table but present in the Amt table ):

Amit92_1-1747839707621.png

I want this measure to show the total value as 2968, not 1491 (perhaps showing the remaining amounts as blank). Can you help me with this?

 

(This is a sample dataset i created, in my original dataset i need to achieve the same thing without creating relationship)

Here are the data in each table if you need for example:

Amt
Amit92_2-1747840191243.png

 

Group

 

Amit92_3-1747840214101.png

 



 
1 ACCEPTED SOLUTION
johnt75
Super User
Super User

I think the below should work. It will give the value for the current group if the group is in scope, otherwise it will give the total

Amt Total Treatas =
VAR AllAmtNames =
    DISTINCT ( Amt[Cust] )
VAR AllGroupNames =
    DISTINCT ( ALL ( Group[Cust] ) )
VAR MissingAmtNames =
    EXCEPT ( AllAmtNames, AllGroupNames )
VAR Result =
    IF (
        ISINSCOPE ( Group[Cust] ),
        CALCULATE ( SUM ( Amt[Amount] ), TREATAS ( VALUES ( Group[Cust] ), Amt[Cust] ) ),
        CALCULATE (
            SUM ( Amt[Amount] ),
            TREATAS ( UNION ( VALUES ( Group[Cust] ), MissingAmtNames ), Amt[Cust] )
        )
    )
RETURN
    Result

View solution in original post

4 REPLIES 4
johnt75
Super User
Super User

I think the below should work. It will give the value for the current group if the group is in scope, otherwise it will give the total

Amt Total Treatas =
VAR AllAmtNames =
    DISTINCT ( Amt[Cust] )
VAR AllGroupNames =
    DISTINCT ( ALL ( Group[Cust] ) )
VAR MissingAmtNames =
    EXCEPT ( AllAmtNames, AllGroupNames )
VAR Result =
    IF (
        ISINSCOPE ( Group[Cust] ),
        CALCULATE ( SUM ( Amt[Amount] ), TREATAS ( VALUES ( Group[Cust] ), Amt[Cust] ) ),
        CALCULATE (
            SUM ( Amt[Amount] ),
            TREATAS ( UNION ( VALUES ( Group[Cust] ), MissingAmtNames ), Amt[Cust] )
        )
    )
RETURN
    Result

Thanks @johnt75 
You saved me 🙂 

johnt75
Super User
Super User

You can try

Amt_Total_Treatas =
CALCULATE (
    SUM ( Amt[Amt] ),
    TREATAS ( UNION ( VALUES ( 'Group'[Cust] ), { BLANK () } ), Amt[Cust] )
)

Hi John,

Thanks for the comment, 🙂

However i am getting the same result for this as my previous measure, check below:

Amit92_0-1747843386315.png

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors