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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
JoshEnglish
Helper I
Helper I

Count occurrences of Yes values

I have merged two tables, a list of accounts against a  list of accounts in groups so I now have:

 

Account Group

------- -----

1       null

2       A

3       A

4       B

 

I am trying to create columns in the query that count the number of times each group appears in the merged table AND count the number of times the group appears in the original table of groups.

 

If the original Group table is:

Account Group

------- -----

2       A

3       A

4       B

5       B

 

I need columns:

Account Group Here There

------- ----- ---- -----

1       null  0    0

2       A     2    2

3       A     2    2

4       B     1    2

 

Eventually I need to have a single list of all Accounts where Group is null, and the Group value if Here = There, (i.e. 1, A, 4) but that's a different issue altogether.

 

Any suggestions?

1 ACCEPTED SOLUTION

@JoshEnglish

 

Try these Columns in MergedTable

 

There =
CALCULATE (
    COUNTROWS ( OriginalTable ),
    FILTER ( OriginalTable, OriginalTable[Group] = MergedTable[Group] )
)

 

Here =
CALCULATE (
    COUNTROWS ( MergedTable ),
    ALLEXCEPT ( MergedTable, MergedTable[Group] )
)

Regards
Zubair

Please try my custom visuals

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

 

I am confused.  What are your inputs and what output do you want?  How did you get the numbers in the Here and There columns?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

The numbers in the "Here" and "There"  columns are the columns I am trying to fill out with Power BI.

 

They are the equivalent of Excel table functions =COUNTIF([GID],[@GID]) and =COUNTIF(Table2[Group ST ID],[@GID])

@JoshEnglish

 

Try these Columns in MergedTable

 

There =
CALCULATE (
    COUNTROWS ( OriginalTable ),
    FILTER ( OriginalTable, OriginalTable[Group] = MergedTable[Group] )
)

 

Here =
CALCULATE (
    COUNTROWS ( MergedTable ),
    ALLEXCEPT ( MergedTable, MergedTable[Group] )
)

Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.