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
Hi All,
I have data like below. I use the measure :
The result of 24% and 14% is not true . The rank of 24% is 3 and the rank of 14% is 2. Please help me to fix that measure
Solved! Go to Solution.
Hi @Anonymous,
Please update the formula of measure [Rank Accessbility] as below and check if it can return your expected result... I remove the spaces from the conditions "Within 3km " and "Within 5km ".
| Rank Accessbility = VAR _value = SELECTEDVALUE ( Master[CBD_accessibility] ) VAR _result = SWITCH ( TRUE (), _value = "Within 3km", 5, _value = "Within 5km", 4, _value = "Within 7km", 3, _value = "Within 10km", 2, _value = "More than 10km", 1 ) RETURN _result |
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Thank you so much
I think you meant to use and in the conditions rather than or
Rank Greenery ratio =
VAR _value = [Greenery ratio]
VAR _result =
SWITCH (
TRUE (),
_value >= 0.3, 5,
_value >= 0.25
&& _value < 0.3, 4,
_value > 0.2
&& _value < 0.25, 3,
_value > 0.1
&& _value < 0.2, 2,
1
)
RETURN
_result
Hi John, thank you so much. I have a measure as :
temporarily change the measure to return _value to make sure that SELECTEDVALUE is returning a value correctly. its possible that there is more than 1 value in the filter context. if it is returning a value then make sure that it exactly matches the text you have in the measure, including the number of spaces.
Hi @Anonymous,
Please update the formula of measure [Rank Accessbility] as below and check if it can return your expected result... I remove the spaces from the conditions "Within 3km " and "Within 5km ".
| Rank Accessbility = VAR _value = SELECTEDVALUE ( Master[CBD_accessibility] ) VAR _result = SWITCH ( TRUE (), _value = "Within 3km", 5, _value = "Within 5km", 4, _value = "Within 7km", 3, _value = "Within 10km", 2, _value = "More than 10km", 1 ) RETURN _result |
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 10 | |
| 5 | |
| 5 |