Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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)
Solved! Go to Solution.
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" ) ) )
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" ) ) )
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
68 | |
44 | |
37 | |
29 |
User | Count |
---|---|
156 | |
92 | |
62 | |
44 | |
41 |