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
rmeng
Helper II
Helper II

Count Values from two Fact tables with blanks

Hello,

I have a star schema with 2 fact tables. I need two metrics from both tables in a new visual table:

# Distinct Count From Call ID Fact1 table = DistinctCount(FACT1[CallID])

# Count of Strategies from FACT 2

The problem is that there are missing  strategies from table Fact2.

In the new visual table I need that Calls Id = null for # Count of Strategies metric when strategies don´t exists. 

rmeng_0-1643197381220.png

Can you help me with this?

2 ACCEPTED SOLUTIONS
SteveHailey
Solution Specialist
Solution Specialist

Hello @rmeng. You could do something like this:

 

# Number of Strategies (FACT 2) = 
IF(
    ISBLANK(
        CALCULATE(
            COUNTROWS( 'Fact 2' ),
            TREATAS( VALUES( 'Fact 1'[Call ID] ), 'Fact 2'[Calls ID] )
        )
    ),
    "null",
    CALCULATE(
        COUNTROWS( 'Fact 2' ),
        TREATAS( VALUES( 'Fact 1'[Call ID] ), 'Fact 2'[Calls ID] )
    )
)

 

SteveHailey_0-1643205486226.pngSteveHailey_1-1643205513549.png

I attached a .pbix file here, in case it's helpful.

 

-Steve

View solution in original post

v-rzhou-msft
Community Support
Community Support

Hi @rmeng ,

 

According to your screenshot, I think you couldn't make all relationships active or you will get a cycle in data model.

For reference: Manage relationship

Here I choose to inactive "DIM Date"[Date] to "FACT 2"[Date].

1.png

You just need to add Strategie column in it and use count function in values field. In your table visual, it will show blank if there is no strategie in Fact2. 

1.png

Or create a easy measure to show null.

Measure = 
VAR _Count = COUNT('FACT 2'[Strategie])
return
IF(ISBLANK(_Count),"null",_Count)

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

2 REPLIES 2
v-rzhou-msft
Community Support
Community Support

Hi @rmeng ,

 

According to your screenshot, I think you couldn't make all relationships active or you will get a cycle in data model.

For reference: Manage relationship

Here I choose to inactive "DIM Date"[Date] to "FACT 2"[Date].

1.png

You just need to add Strategie column in it and use count function in values field. In your table visual, it will show blank if there is no strategie in Fact2. 

1.png

Or create a easy measure to show null.

Measure = 
VAR _Count = COUNT('FACT 2'[Strategie])
return
IF(ISBLANK(_Count),"null",_Count)

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

SteveHailey
Solution Specialist
Solution Specialist

Hello @rmeng. You could do something like this:

 

# Number of Strategies (FACT 2) = 
IF(
    ISBLANK(
        CALCULATE(
            COUNTROWS( 'Fact 2' ),
            TREATAS( VALUES( 'Fact 1'[Call ID] ), 'Fact 2'[Calls ID] )
        )
    ),
    "null",
    CALCULATE(
        COUNTROWS( 'Fact 2' ),
        TREATAS( VALUES( 'Fact 1'[Call ID] ), 'Fact 2'[Calls ID] )
    )
)

 

SteveHailey_0-1643205486226.pngSteveHailey_1-1643205513549.png

I attached a .pbix file here, in case it's helpful.

 

-Steve

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