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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

Dynamically group

Hello,

 

I have a table with name of report, date of creation and creator.

 

I would like to group creator. I need them to keep their name if they create 5%  or more of the total pool of report. If they creadted less than 5% of report, they have to by group in "Other"

 

I can group them manualy but I will have to check evrey month if they are ine the right category

 

Do you know a way to do so dynamically?

 

Thank in advance,

 

Emmanuelle

 

1 ACCEPTED SOLUTION

Hi @Anonymous,

I would suggest that you create a table with only the creator names. This can be done by clicking Create Table and enter the following formula:

Creators = DISTINCT(Reports[Creator])

(assuming your table is called Reports.) Now establish a relationship between Creators and Reports on the Creator field.

 

Next step is to define a calculated new column called Group in the Creators table:

Group = 
VAR C = Creators[Creator] 
RETURN 
IF(CALCULATE(COUNTROWS(Reports),Reports[Creator] = C)/COUNTROWS(Reports) > 0.05, 
C,
"Other")

In your table visual you can now use Creators[Group] instead of Reports[Creator] and you should get the desired result.

 

View solution in original post

4 REPLIES 4
vanessafvg
Community Champion
Community Champion

@Anonymous you can use a switch statement probably to derive it, however can you show me what your data looks like?  otherwise it will be hard to show you how to write it





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Anonymous
Not applicable

Hi Vanessa,

 

My data look like that

example.png

 

I have the creator name, the date of creation and the raport title

 

I would like to group C and D because they produce less then 5% of the report total

 

Hi @Anonymous,

I would suggest that you create a table with only the creator names. This can be done by clicking Create Table and enter the following formula:

Creators = DISTINCT(Reports[Creator])

(assuming your table is called Reports.) Now establish a relationship between Creators and Reports on the Creator field.

 

Next step is to define a calculated new column called Group in the Creators table:

Group = 
VAR C = Creators[Creator] 
RETURN 
IF(CALCULATE(COUNTROWS(Reports),Reports[Creator] = C)/COUNTROWS(Reports) > 0.05, 
C,
"Other")

In your table visual you can now use Creators[Group] instead of Reports[Creator] and you should get the desired result.

 

Anonymous
Not applicable

Perfect, thank you very much

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

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.