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
ErikBI
Resolver I
Resolver I

Create a new table that counts the amount of times a certain combination of 2 columns occurs

Whats up, powerBI wizards,

 

I have a seemingly easy question but I honestly can't figure it out. Below I have illustrated my problem in excel to show you what I'm trying to achieve:

 

The left table is what my source table looks like. The right table is a table that I am trying to create. It's purpose is to count the amount of times a certain combination of period and label happens. 

 

Thanks!

image.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 
1 ACCEPTED SOLUTION
az38
Community Champion
Community Champion

Hi @ErikBI 

create a new calculated table

Table = SUMMARIZE(Table, Table[period], Table[label], "COUNT", Countrows(Table))

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

If you take count of the label in visualization that should also do.

 

count =count(table[label])

@ErikBI ,Does the above replies helped. if you need more help make me @

Appreciate your Kudos.

az38
Community Champion
Community Champion

Hi @ErikBI 

create a new calculated table

Table = SUMMARIZE(Table, Table[period], Table[label], "COUNT", Countrows(Table))

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Hey @az38 , thanks for your reply. This does exactly what I needed!

 

I have one more question: I would like to join (append) this table to an existing table. But since this table is not created in the query editor, I can't append it. Do you know how I can append this newly created table to an existing table?

 

Thanks!

 

Newly created table with your code:

bi2.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

My existing table

bi1.PNG

az38
Community Champion
Community Champion

@ErikBI 

for append tables after creating Power Query transformation use DAX UNION() function.

create a new calculated column like

New Table = UNION(Table1, Table2)

 but be carefull there are some rules from here https://docs.microsoft.com/en-us/dax/union-function-dax

The two tables must have the same number of columns.
Columns are combined by position in their respective tables.
The column names in the return table will match the column names in table_expression1

do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

You're a legend. A lifesaver. Thanks so much! 😁

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.