Forum Discussion
SELECTEDVALUE function doesn't recognized
Hi to all,
I am trying to create a new measure by using a selected value from a slicer. First i created a demo by deploying the model to local sql server which has supported compatibility level 1200 and can use SELECTEDVALUE function in power bi dax query. But after deploy the model to sql server in the server which has supported compatibility level 1103 and get data in live connection mode couldn't see SELECTEDVALUE. So is it there a way to fix this situation? Thanks for any help.
you can use the IF + HASONEVALUE combination, as explained here
https://www.sqlbi.com/articles/using-the-selectedvalue-function-in-dax/IF ( HASONEVALUE ( Table[column] ), VALUES ( Table[column] ), "default value" )
2 Replies
- StachuCommunity Champion
you can use the IF + HASONEVALUE combination, as explained here
https://www.sqlbi.com/articles/using-the-selectedvalue-function-in-dax/IF ( HASONEVALUE ( Table[column] ), VALUES ( Table[column] ), "default value" )
- AnonymousNot applicable
Thanks so much for helping.