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

% GT over two columns

Hi,

 

I'm a complete novice on Power BI but I'm trying to combine two columns with similar data (e.g. 1-5) to create a GT% overall.

 

e.g. Count A contains different number of 1-5 data than Count B.

 Count ACount B% of GT of Count A + B
1172682.14%
2610134317.44%
33016286852.55%
41779129827.48%
522220.39%
Total55995599100.00%
1 ACCEPTED SOLUTION
Twilla
Helper I
Helper I

Hi,

 

Create a measure:

 

 

% of GT = sumx(Table1;Table1[Count A]+Table1[Count B])/calculate(SUM(Table1[Count A])+SUM(Table1[Count B]);all(Table1))

Replace table1 with the name of your table.

 

The sumx function takes the sum of count A and count B at row level.

The second part takes the sum of count A+count B for the whole table (it does this because we use a the "ALL" function which ignores the current context of the row. For you to understand the solution, search some info about the DAX functions: All, Calculate, SUM and SUMX.

View solution in original post

2 REPLIES 2
v-ljerr-msft
Employee
Employee

Hi @deadlycapybara7,

 

Have you tried the solution provided by @Twilla above? Does it work in your scenario? If it works, could you accept it as solution to close this thread?

 

If you still have any question on this issue, feel free to post here. Smiley Happy

 

Regards

Twilla
Helper I
Helper I

Hi,

 

Create a measure:

 

 

% of GT = sumx(Table1;Table1[Count A]+Table1[Count B])/calculate(SUM(Table1[Count A])+SUM(Table1[Count B]);all(Table1))

Replace table1 with the name of your table.

 

The sumx function takes the sum of count A and count B at row level.

The second part takes the sum of count A+count B for the whole table (it does this because we use a the "ALL" function which ignores the current context of the row. For you to understand the solution, search some info about the DAX functions: All, Calculate, SUM and SUMX.

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.