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
thomasOfver
Frequent Visitor

Help with creating table

Hi! I have a table with three columns: Country Office, User, and Completion Status (1 or 0). I also have the measure "Completion Rate", which just takes the average of the Completion Status column and returns the overall completion rate for my users. Based on this information, I want to create a new table with three columns: Country Office, User Count (for the country office), and Completion Rate (for the country office).

 

In excel this would be pretty straighforward with the Countif() function, but could anyone suggest an effective way to do this in Power BI?

 

Below is a screenshot of the table I want:

pic1.JPG

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

You can try to use GROUPBY function to get this kind of summary information.

 

NewTableName = GROUPBY('ExistingTableName','ExistingTableName'[Country],"Count of Users",COUNTX(CURRENTGROUP(),'ExistingTableName'[Users]),"Completion Rate", AVERAGEX(CURRENTGROUP(),SUM'ExistingTableName'[Completion Status]/COUNT'ExistingTableName'[Users]))

 

View solution in original post

4 REPLIES 4
v-xjiin-msft
Solution Sage
Solution Sage

Hi @thomasOfver,

 

To achieve your requirement, I think you can try SUMMARIZE() function. Please refer to following sample:

 

New Table =
SUMMARIZE (
    'Table',
    'Table'[Country Office],
    "Count Of User", COUNT ( 'Table'[Users] ),
    "Completion Rate", DIVIDE (
        SUM ( 'Table'[Completion Status] ),
        COUNT ( 'Table'[Completion Status] )
    )
)

4.PNG

 

Thanks,

Xi Jin.

Anonymous
Not applicable

You can try to use GROUPBY function to get this kind of summary information.

 

NewTableName = GROUPBY('ExistingTableName','ExistingTableName'[Country],"Count of Users",COUNTX(CURRENTGROUP(),'ExistingTableName'[Users]),"Completion Rate", AVERAGEX(CURRENTGROUP(),SUM'ExistingTableName'[Completion Status]/COUNT'ExistingTableName'[Users]))

 


@Anonymouswrote:

You can try to use GROUPBY function to get this kind of summary information.

 

NewTableName = GROUPBY('ExistingTableName','ExistingTableName'[Country],"Count of Users",COUNTX(CURRENTGROUP(),'ExistingTableName'[Users]),"Completion Rate", AVERAGEX(CURRENTGROUP(),SUM'ExistingTableName'[Completion Status]/COUNT'ExistingTableName'[Users]))

 



This totally did the trick - thank you! 🙂

Anonymous
Not applicable

I would create the following three measures:

 

 

[# of Users] = 
    COUNTROWS( table )
[# Complete] = 
    SUM ( table[Completion Status] )

 

 

[% Completion Rate] = 
    DIVIDE( [# Complete], [# of Users] )

Then put table[Country Office] in your table visual, along with these two measures: [# of Users] and [% Completion Rate]

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.