Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
May someone let me know what I am doing wrong. The end result is suppse to be 2.
Solved! Go to Solution.
@Anonymous I'm wondering if the value is not exactly 0.89 but that it is just being displayed that way due to how many decimal places you have chosen to display.
Hi @Anonymous ,
I think your data in [EE Compa-Ratio] column should in range of >=0.885 and <0.895.
Please try code as below to create a calculated column.
Column =
SWITCH ( TRUE (), [EE Compa-Ratio] >= 0.885 && [EE Compa-Ratio] < 0.895, 2, 10 )
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous I'm wondering if the value is not exactly 0.89 but that it is just being displayed that way due to how many decimal places you have chosen to display.
Thank you - I did a Power Querey and rounded that column exactly to the two decimal place. ❤️
@Anonymous So as an experiment, what happens if you change your statement to this:
Column =
SWITCH( TRUE(),
[EE Compa-Ratio] > .88999999999999999999 && [EE Compa-Ratio] < .8901, 2,
10
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 46 | |
| 43 | |
| 39 | |
| 19 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 68 | |
| 31 | |
| 27 | |
| 24 |