Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
This could be basic Dear Community but I need to find the way to clasify a result in 3 posibilities using "If"
I need to know if a x number es between 9, 16, 24.
ANY HELP WOULD BE SO MUCH APPRECIATED
My try was the following:
Rango* = IF('column (Chil'[TotalhoursDiff**]<= 'column (Chil'[Rango 1],"1",IF(AND('column (Chil'[TotalhoursDiff**]<='column (Chil'[Rango 2],'column (Chil'[TotalhoursDiff**]<='column (Chil'[Rango 3]),"2","3"))
Solved! Go to Solution.
Hmm, that's odd, do you have <= in the formula for the second condition?
The general format of the IF is:
IF(<condition>, <if true>, <if false>)
So, you just keep tacking on IF statements in the <if false> area. So, if you need a fourth value, you would just tack on an IF statement where you have the 3. You can string these together indefinitely but you might want to take a look at the SWITCH statement instead of the IF statement as it will be cleaner code-wise.
What range of TotalhoursDiff** should produce an output of 1, 2 or 3 respectively?
You have a mystery AND in there, not sure why. Try this:
Rango* = IF('column (Chil'[TotalhoursDiff**]<= 'column (Chil'[Rango 1],"1",IF('column (Chil'[TotalhoursDiff**]<='column (Chil'[Rango 2],2,3))
Hi @Greg_Deckler thats work better thank you but I have 2 last questions... what can I do when is 16:00 to keep it in range 2... because when is 16:00 goes to range 3.
What About if I need to add a fourth range (4)... How do I continue with the formula?
That would be all...hopefully you can give me a hand!!!
Hmm, that's odd, do you have <= in the formula for the second condition?
The general format of the IF is:
IF(<condition>, <if true>, <if false>)
So, you just keep tacking on IF statements in the <if false> area. So, if you need a fourth value, you would just tack on an IF statement where you have the 3. You can string these together indefinitely but you might want to take a look at the SWITCH statement instead of the IF statement as it will be cleaner code-wise.
Pretty decent advices fellows!!!! thank you so much
Would SWITCH actually work if it's trying to compare a range of values? AFAIK it would only work with constant values, and OP's got a lot of potential constant values
Sure you could use SWITCH
https://community.powerbi.com/t5/Desktop/Switch-amp-Calculate-Issue/m-p/352890#M158765
Heh, didn't think of using a variable as an intermediate step, that's nice
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
109 | |
105 | |
94 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |