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
malguera
Frequent Visitor

Need help with measures combining two tables

Hello Team,

 

Need some help, I've been trying to sort this out using different combinations of DAX Formulas and I'm still missing a couple of what should be simple measures but for some reason it has been a nightmare on the way is interacting with the rest of the things.

 

Long story short (trying to simplify the Business Case)

1. Have 2 Tables (Table 1 with Sales Details and Table 2 with Hierarchy Account List)
    1.1. We may have Accounts from Table 2 (universe of accounts) that have no Sales in Table 1

 

2. You can have in the raw data (Table 1) something like this (obviously with a ton of more details):

TABLE 1.PNG

 

3. There is a second table with Account "Universe"

TABLE 2.PNG

 

4. We should be able to get the following measures (some examples):

TABLE 3.PNG

 

Need your help to try to get the last 2 measures:

A. Accounts with Product A ONLY and

B. % Accounts with Product A Only vs Table 2 (Account Universe)

 

Note: Measures should interact based on selected filtered criteria and be able to visualize in Matrix or Charts

 

I know is very simple, but there is something that I'm missing reason why I would like to start from scratch with your inputs. Any help is more than welcome!


Thanks,

Mario

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@malguera

 

May be you can add another FILTER expression inside CALCULATE

 

Accounts with Product A only =
CALCULATE (
    DISTINCTCOUNT ( Table1[Account] ),
    FILTER (
        ALLSELECTED ( Table1[Account] ),
        CALCULATE ( DISTINCTCOUNT ( Table1[Product] ) = 1 )
    ),
    Table1[Product] = "A"
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@malguera

 

May be you can add another FILTER expression inside CALCULATE

 

Accounts with Product A only =
CALCULATE (
    DISTINCTCOUNT ( Table1[Account] ),
    FILTER (
        ALLSELECTED ( Table1[Account] ),
        CALCULATE ( DISTINCTCOUNT ( Table1[Product] ) = 1 )
    ),
    Table1[Product] = "A"
)

Regards
Zubair

Please try my custom visuals

Thanks Zubair! Seems is working fine, I'll finalize the Dashboard to see how the measure interacts with the rest of calculations.
Very much appreciated!

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.