Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
41 | |
36 | |
22 | |
21 | |
20 |