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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
bilingual
Helper V
Helper V

Group calculated measures

Hi, i have made a measure which calculates percentage of total:

 
Pct. af total = DIVIDE(SUM(Data[Antal rejser]);CALCULATE(SUM(Data[Antal rejser]);ALL(Data[Name]));BLANK())
 
I want to create a new group which sum up all calculated values which are less than 0,5 pct and call the group "Names with <=0,5 pct.", all other values just keep their Names, how do i manage it? 
 
Kind regards Dan
 

 

1 ACCEPTED SOLUTION

for going by greg suggestion to create a disconected table just make a table that returns a single column and row with null value and just that table as disconected, 

example: 

Table = DataTable("Name", STRING,  
               "null", STRING  ,{  {"1","0"}  }  )  
 
and the measure have home section to define in the table you want to home it them apply greg indstructions for the measure itself, or use the Dax estudio or tabular to create the group. 




Did I answer your question? Mark my post as a solution! / Did it help? Give some Kudos!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
v-henryk-mstf
Community Support
Community Support

Hi @bilingual ,


Whether the advice given by @StefanoGrimaldi  has solved your confusion, if the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out.


Looking forward to your feedback.


Best Regards,
Henry

Greg_Deckler
Community Champion
Community Champion

@bilingual Create a disconnected table with your group names and a measure along the lines of:

Measure =
  VAR __Table = SUMMARIZE('Table',[Name],"__Pct",[Pct. af total])
  VAR __Group = MAX('DisconnectedTable',[Value])
RETURN
  SWITCH(__Group,
    "Names with <=0,5 pct.",SUMX(FILTER(__Table,[__Pct]<0,5),
    // more categories here
  )

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Hi Stefano, thanks however i have problems making the Disconnected table, i can not make it to list the names,  how do i do it?

Kind regards Dan

for going by greg suggestion to create a disconected table just make a table that returns a single column and row with null value and just that table as disconected, 

example: 

Table = DataTable("Name", STRING,  
               "null", STRING  ,{  {"1","0"}  }  )  
 
and the measure have home section to define in the table you want to home it them apply greg indstructions for the measure itself, or use the Dax estudio or tabular to create the group. 




Did I answer your question? Mark my post as a solution! / Did it help? Give some Kudos!

Proud to be a Super User!




StefanoGrimaldi
Resident Rockstar
Resident Rockstar

you can use calculation groups on power BI dax studio or tabular editar: 

https://www.youtube.com/watch?v=_j0iTUo2HT0

https://community.powerbi.com/t5/Community-Blog/How-And-When-To-Use-Calculation-Groups-In-Power-BI/b... 





Did I answer your question? Mark my post as a solution! / Did it help? Give some Kudos!

Proud to be a Super User!




Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.