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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
KeithSuckling
Helper I
Helper I

What is the %GT Quick Calculation really?

Using the %GT quick calculation and realising that I couldn't change the name of it, I tried to use the formula that is generally described as the replacement.

 

Percentage = SUM(TableName[MyColumn]) / CALCULATE(SUM(TableName[MyColumn]), ALL(TableName))

However, when I went to use a filter on my report page, I noticed that the formula did not deliver the expected result.  

After quickly testing side by side the results of GT% quick calc and the above formula calcuation I worked out only the GT% quick calc was giving me the changed view of my data that I wanted.

 

Is there anyone who knows what the formula for GT% quick calc is exactly so I can mimic its behaviour in more situations?

1 ACCEPTED SOLUTION

Hi @KeithSuckling,

 

As the measure use the ALL() function which returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied. It's expected that when you check different values from the slicer, the chart values will not change.

 

Regarding the "Percent of grand total", any filters include slicer, visual/ page/ report level filters will impact values.

 

In your scenario, you can use ALLSELECTED() function in the measure,

 

Measure 2 = SUM(Table1[Person count])/CALCULATE(SUM(Table1[Person count]),ALLSELECTED('Table1'))

 

w1.PNGw2.PNG

 

 

Best Regards,
Qiuyun Yu

 

 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

8 REPLIES 8
paulobrandao
New Member

TotalViagens% =
          COUNTROWS(fMargemContribuicao) / CALCULATE(COUNTROWS(fMargemContribuicao),
                            ALLSELECTED(fMargemContribuicao)
          )
paulobrandao
New Member

Eu usei está fórmula e funcionou perfeitamente. 😊

GilbertQ
Super User
Super User

Hi @KeithSuckling

 

What I complete the steps that you did I get exactly the same results between the Quick measure and the created measure.

 

I am unsure how yours is different?

 

Delete later - IP Address Table.png





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

@GilbertQ below is the pic that shows a replication of the problem.  The data file is incredibly simple, the two fields are very simple as well.  When the filter is used the output of the formula and the GT% quick calc is different.

 

Capture.JPG

 

 

Hi @KeithSuckling

 

Could I please ask you to try the following formula, and see if that resolves your issue.

 

DIVIDE(
	sum(Table1[Person count]),
  Calculate(
	sum(Table1[Person count]),
     ALL(Table1)
  )
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Thank for trying @GilbertQ

I had tried this already and it hadn't worked.  

The picture below confirms the new formula produces the same result.

 

Capture.JPG

Hi @KeithSuckling,

 

As the measure use the ALL() function which returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied. It's expected that when you check different values from the slicer, the chart values will not change.

 

Regarding the "Percent of grand total", any filters include slicer, visual/ page/ report level filters will impact values.

 

In your scenario, you can use ALLSELECTED() function in the measure,

 

Measure 2 = SUM(Table1[Person count])/CALCULATE(SUM(Table1[Person count]),ALLSELECTED('Table1'))

 

w1.PNGw2.PNG

 

 

Best Regards,
Qiuyun Yu

 

 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanx @v-qiuyu-msft!!!

That seems to work, producing the same result as the GT% quick calc.

 

Capture.JPG

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.