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

counta grouping

Hi,

 

I have a table with a column and values. I'm trying to group the values into group ranges. For exmple

 

Amounts
10000
5000
4000
2000
5
11000
12000
20000
15000
30000
100000
25000
80000
18000
21000
14000
23500

 

 

and im looking for an outcome like this. 

 

AmountsCount
Between 1 and 100005
Between 10001 and 200006
Between 20001 and 300004
Above 300002
1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @atari35 

Probably the easiest is to create add a calculated column with the range:

 

Bucket =
SWITCH (
    TRUE (),
    Table1[Amount] <= 10000, "Between 1 and 10000",
    Table1[Amount] <= 20000, "Between 10001 and 20000",
    Table1[Amount] <= 30000, "Between 20001 and 30000",
    "Above 30000"
)

then use it in a matrix visual with a simple COUNT measure

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @atari35 

Probably the easiest is to create add a calculated column with the range:

 

Bucket =
SWITCH (
    TRUE (),
    Table1[Amount] <= 10000, "Between 1 and 10000",
    Table1[Amount] <= 20000, "Between 10001 and 20000",
    Table1[Amount] <= 30000, "Between 20001 and 30000",
    "Above 30000"
)

then use it in a matrix visual with a simple COUNT measure

 

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.