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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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