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

Creating a new column that counts values from another column

I want to create new columns from values from one column in power bi. How do I do that? Let's say for instance from the table below, I want to create new columns for different states from the state column that will count the number of companies that are headquartred in that state, how will I do that in power bi

Company IdCompany Name StatesAlabamaTexasIllinoisMichiganOhio
1XtechAlabama24123
2ColiqTexas     
3FimtecIllinois      
4WitnogMichigan     
5GnamewOhio     
6ZenithTexas     
7LeverMichigan     
9GumTexas     
10HunlecOhio     
11GirthlowOhio     
12TetlowAlabama     
13DoughlasTexas     
1 REPLY 1
Jihwan_Kim
Super User
Super User

Picture2.png

 

New Table =
ROW (
"Alabama", COUNTROWS ( FILTER ( Data, Data[States] = "Alabama" ) ),
"Texas", COUNTROWS ( FILTER ( Data, Data[States] = "Texas" ) ),
"Illinois", COUNTROWS ( FILTER ( Data, Data[States] = "Illinois" ) ),
"Michigan", COUNTROWS ( FILTER ( Data, Data[States] = "Michigan" ) ),
"Ohio", COUNTROWS ( FILTER ( Data, Data[States] = "Ohio" ) )
)

 

https://www.dropbox.com/s/lr6vx7fu3fv8m1j/joparaugo.pbix?dl=0 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.