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

Count column using filter

I am trying to count nº of rows from a column in Dim_Chamadas table (using a filter) grouping by the columns in the "Summarize" formula. The problem is that it isn't grouping by those columns, it is counting all the rows from the Dim_Chamadas where [1nive] = 'Sale" (Column "teste"). The "Total Quantity" column is  indeed grouping however. Can someone help me?

 

 

=ADDCOLUMNS ( SUMMARIZE (Fact_Tipificacao,[Produto],Dim_Data[BK_Data],Dim_Vendedor[BK_Vendedor]),"Total Quantity",Calculate(SUM ( Fact_Tipification[Quantity] )),"teste", COUNTROWS( Filter( Dim_Chamadas,Dim_Chamadas[1Nivel] = "Sale")))

 

 

 

RESULT:

jjhh.PNG 

 

Solution:

 

Ok apparently i had to change the filter in diagram between Dim_Chamadas and Fact_Tipification to Both ways. It was "one way". it is now working.

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

Hi @rafamaniac ,

 

According to your statement, I think Dim_Chamadas table should have directly relationship with Fact_Tipificacao. This issue should be caused by relationship, like many to many. Here I suggest you to add some filter in "teste" part.

Code should look like as below. You need to replace the Dim_Chamadas[ColumnName]  and Fact_Tipificacao[ColumnName] by related column name in both tables.

table =
ADDCOLUMNS (
    SUMMARIZE (
        Fact_Tipificacao,
        [Produto],
        Dim_Data[BK_Data],
        Dim_Vendedor[BK_Vendedor]
    ),
    "Total Quantity", CALCULATE ( SUM ( Fact_Tipification[Quantity] ) ),
    "teste",
        COUNTROWS (
            FILTER (
                Dim_Chamadas,
                Dim_Chamadas[ColumnName] = EARLIER ( Fact_Tipificacao[ColumnName] )
                    && Dim_Chamadas[1Nivel] = "Sale"
            )
        )
)


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 @rafamaniac ,

 

According to your statement, I think Dim_Chamadas table should have directly relationship with Fact_Tipificacao. This issue should be caused by relationship, like many to many. Here I suggest you to add some filter in "teste" part.

Code should look like as below. You need to replace the Dim_Chamadas[ColumnName]  and Fact_Tipificacao[ColumnName] by related column name in both tables.

table =
ADDCOLUMNS (
    SUMMARIZE (
        Fact_Tipificacao,
        [Produto],
        Dim_Data[BK_Data],
        Dim_Vendedor[BK_Vendedor]
    ),
    "Total Quantity", CALCULATE ( SUM ( Fact_Tipification[Quantity] ) ),
    "teste",
        COUNTROWS (
            FILTER (
                Dim_Chamadas,
                Dim_Chamadas[ColumnName] = EARLIER ( Fact_Tipificacao[ColumnName] )
                    && Dim_Chamadas[1Nivel] = "Sale"
            )
        )
)


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.

 

ryan_mayu
Super User
Super User

could you pls provide the sample data and the expected result based on the sample data?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.