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
mjustintaylor
New Member

Data Ranges

Hi Community.

 

In Excel, I can create a formula to give a result on ranges between certain values e.g.

 

=IF(AND(A2>=0, A2<= 100), "Answer A",IF(AND(A2>=101, A2<=500),"Answer B", IF(AND(A2>=501, A2<=1000),"Answer 3", "Void")))

 

Is there a Dax equivalent, so I can get this to work directly in Power BI when importing and combining several spreadsheets (the If, And doesn't work)

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

Hi @mjustintaylor ,

 

We should get the A2 by VAR like this.

 

Measure =
VAR A2 =
    CALCULATE ( SUM ( 'Table'[value] ), FILTER ( 'Table', 'Table'[index] = 2 ) )
RETURN
    IF (
        AND ( A2 >= 0, A2 <= 100 ),
        "Answer A",
        IF (
            AND ( A2 >= 101, A2 <= 500 ),
            "Answer B",
            IF ( AND ( A2 >= 501, A2 <= 1000 ), "Answer 3", "Void" )
        )
    )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @mjustintaylor ,

 

We should get the A2 by VAR like this.

 

Measure =
VAR A2 =
    CALCULATE ( SUM ( 'Table'[value] ), FILTER ( 'Table', 'Table'[index] = 2 ) )
RETURN
    IF (
        AND ( A2 >= 0, A2 <= 100 ),
        "Answer A",
        IF (
            AND ( A2 >= 101, A2 <= 500 ),
            "Answer B",
            IF ( AND ( A2 >= 501, A2 <= 1000 ), "Answer 3", "Void" )
        )
    )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
AndrejZitnay
Post Patron
Post Patron

Hello @mjustintaylor 

 

Have you tried :

 

= IF(A2>=0 && A2 <=100,"Answer A","Answer B") or another combinations.

 

IF first option && IF second option, than ...

 

Andrej

 

 

 

Thanks, Andrej

 

I will give this a go.

 

KRs

 

Justin

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.

Top Solution Authors