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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Measure a field between two values MIN and MAX

Hi !

I'm trying to measure a field between two values ...for example,

I have a record with a counter that has the value 7 and I have a group (the groups are not in dynamics365) "bucketB"(which has a MIN(column) with value 1 and a MAX(column) with value 35) so that record should be a part of the group "BucketB".

So all records that have a counter of the value 0 should end up in BucketA(0), all records with a counter with the value 1 to 35 should end up in BucketB and so on.

..... Now I made a table "Bucket" with the columns and rows but I'm kinda stuck. Because I don't really have a relation with the main table that has the record and the counter. I tried some similar solutions with DAX but no luck (Its maybe I suck at DAX)

... some pictures to make it more clear what I'm trying to achieve

 

The Table I made (not in relation with the main table where the record and the counter are)The Table I made (not in relation with the main table where the record and the counter are)What I'm trying to achieveWhat I'm trying to achieve

 

Thank you, Zain

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

My original table:
b7.png

//Column
Bucket = 
SWITCH(
    TRUE(),
    [Score] = 0 , "0",
    [Score] >= 1 && [Score] <= 30, "1-30",
    [Score] >= 31 && [Score] <= 45, "31-45",
    [Score] >= 46 && [Score] <= 60, "46-60",
    [Score] > 60, "61+"
)

Min_ = 
SWITCH(
    TRUE(),
    [Score] = 0 , 0,
    [Score] >= 1 && [Score] <= 30, 1,
    [Score] >= 31 && [Score] <= 45, 31,
    [Score] >= 46 && [Score] <= 60, 46,
    [Score] > 60, 61
) 

Max_ = 
SWITCH(
    TRUE(),
    [Score] = 0 , 0,
    [Score] >= 1 && [Score] <= 30, 30,
    [Score] >= 31 && [Score] <= 45, 45,
    [Score] >= 46 && [Score] <= 60, 60,
    [Score] > 60, 150
)

Sort Order = 
RANKX(
    Sheet6,
    [Min_],
    ,
    ASC,
    Dense
)

//Measure
number = 
CALCULATE(
    COUNT(Sheet6[Score]),
    ALLEXCEPT(
        Sheet6,
        Sheet6[Bucket]
    )
)

 

b8.png

 

Best regards,
Lionel Chen

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

My original table:
b7.png

//Column
Bucket = 
SWITCH(
    TRUE(),
    [Score] = 0 , "0",
    [Score] >= 1 && [Score] <= 30, "1-30",
    [Score] >= 31 && [Score] <= 45, "31-45",
    [Score] >= 46 && [Score] <= 60, "46-60",
    [Score] > 60, "61+"
)

Min_ = 
SWITCH(
    TRUE(),
    [Score] = 0 , 0,
    [Score] >= 1 && [Score] <= 30, 1,
    [Score] >= 31 && [Score] <= 45, 31,
    [Score] >= 46 && [Score] <= 60, 46,
    [Score] > 60, 61
) 

Max_ = 
SWITCH(
    TRUE(),
    [Score] = 0 , 0,
    [Score] >= 1 && [Score] <= 30, 30,
    [Score] >= 31 && [Score] <= 45, 45,
    [Score] >= 46 && [Score] <= 60, 60,
    [Score] > 60, 150
)

Sort Order = 
RANKX(
    Sheet6,
    [Min_],
    ,
    ASC,
    Dense
)

//Measure
number = 
CALCULATE(
    COUNT(Sheet6[Score]),
    ALLEXCEPT(
        Sheet6,
        Sheet6[Bucket]
    )
)

 

b8.png

 

Best regards,
Lionel Chen

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.