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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Categorizing a column of numbers into Large, Medium, Small

I have a colum with market size for each company. I want to classify each company based on its size into Large, Medium, Small using its market size. So for medium I want to capture those that are >=$1bn and <=$1bn as Medium. What is the best way of achieving this?

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Is this problem sloved?

If it is sloved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If not, please let me know.

Best Regards
Icey

View solution in original post

3 REPLIES 3
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Is this problem sloved?

If it is sloved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If not, please let me know.

Best Regards
Icey

Anonymous
Not applicable

Hello-

 

   The best way is a calculated column.  Right click in your data and click create column.  

Type = if(calculate(sum(dollars))) > 1,000,000,000, "Large","Medium")

TomMartens
Super User
Super User

Hey,

 

I guess the articles that are linked on this side

https://www.daxpatterns.com/usecases/classification/

will provide what you are looking for.

 

My first guess, start with static segmentation:

https://www.daxpatterns.com/static-segmentation/

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors