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
AmalrajRRD1
Helper II
Helper II

Grouping values

Hi all,

 

I have sales data upto one  laks, I want to group the data like "<1000, 1000-5000", "5000-7000" and <7000.

 

How to do it in dax function?

somebody help me on this ?

 

thanks

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @AmalrajRRD1,

 

Add calculated column with below DAX formual.

Group =
IF (
    Table1[Sales] < 1000,
    "<=1000",
    IF (
        Table1[Sales] > 1000
            && Table1[Sales] <= 5000,
        "1000-5000",
        IF ( Table1[Sales] > 5000 && Table1[Sales] <= 7000, "5000-7000", ">7000" )
    )
)

Alternatively, you can right click the [sales] field and choose "new group".

2.PNG

 

Result.

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

3 REPLIES 3
v-yulgu-msft
Employee
Employee

Hi @AmalrajRRD1,

 

Add calculated column with below DAX formual.

Group =
IF (
    Table1[Sales] < 1000,
    "<=1000",
    IF (
        Table1[Sales] > 1000
            && Table1[Sales] <= 5000,
        "1000-5000",
        IF ( Table1[Sales] > 5000 && Table1[Sales] <= 7000, "5000-7000", ">7000" )
    )
)

Alternatively, you can right click the [sales] field and choose "new group".

2.PNG

 

Result.

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks for your Reply.

Greg_Deckler
Super User
Super User

Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Need sample data but generally this involves a caculated column or a disconnected table trick measure.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.