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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Split query into 1 table with 4 areas

I have a query which in the area it has values of 

 

project           Area

1                     ncsa

2                    mena

3                    apac

4                    earc

5                    ncsa

 

 

I would like to split each row based on the area into a table that counts the number of projects based on the area. for example,

 

table 1

 

# of projects in area                  area

5                                                mena

3                                                apac

 

how can I split my query or use DAX to create a new table

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous 

The example is a bit confusing. I'm not sure I understand correctly. Create a new calculated table:

NewTable =
ADDCOLUMNS (
    DISTINCT ( Table1[Area] ),
    "NumProjects", CALCULATE ( COUNT ( Table1[project] ) )
)

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

View solution in original post

2 REPLIES 2
AlB
Community Champion
Community Champion

Hi @Anonymous 

The example is a bit confusing. I'm not sure I understand correctly. Create a new calculated table:

NewTable =
ADDCOLUMNS (
    DISTINCT ( Table1[Area] ),
    "NumProjects", CALCULATE ( COUNT ( Table1[project] ) )
)

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

jdbuchanan71
Super User
Super User

You can get the count of uniqe projects using this measure.

# of projects in area = DISTINCTCOUNT ( YourTable[project] )

Then you would add the area and that measure into a table visual to get the project count by area.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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