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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

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 @Anonymous 

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])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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

Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
az38
Community Champion
Community Champion

Hi @Anonymous 

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
Anonymous
Not applicable

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

@Anonymous 

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
Anonymous
Not applicable

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

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors