Measure Selection = SWITCH( TRUE(), VALUES('ADMIN Year Slicer'[Custom]) = "2015",[2015 Turnover Rate], VALUES('ADMIN Year Slicer'[Custom]) = "2016",[2016 Turnover Rate], VALUES('ADMIN Year Slicer'[Custom]) = "2017",[YTD Turnover Rate],BLANK() )
I'm using the SWITCH method outlined in this article -http://community.powerbi.com/t5/Community-Blog/Dynamically-change-the-information-within-a-visual-vi...
But I'm getting the error message above which I can't figure out. Here's the Measure selection table I'm using.
Any ideas why this is happening? Thanks,
Pierre
Solved! Go to Solution.
Hi @pierre415,
The VALUES function will return all the values of the 'ADMIN Year Slicer'[Custom] column if there is no any filter applied on it. So you may need to check if there is only one available value in current filter context first, then use VALUES('ADMIN Year Slicer'[Custom]) = "2015" within the SWITCH function in your scenario. The formula below is for your reference.
Measure Selection = IF ( HASONEVALUE ( 'ADMIN Year Slicer'[Custom] ), SWITCH ( TRUE (), VALUES ( 'ADMIN Year Slicer'[Custom] ) = "2015", [2015 Turnover Rate], VALUES ( 'ADMIN Year Slicer'[Custom] ) = "2016", [2016 Turnover Rate], VALUES ( 'ADMIN Year Slicer'[Custom] ) = "2017", [YTD Turnover Rate], BLANK () ) )
Or you can just use FIRSTNONBLANK function instead of VALUES function.
Measure Selection = SWITCH ( TRUE (), FIRSTNONBLANK ( 'ADMIN Year Slicer'[Custom], 1 ) = "2015", [2015 Turnover Rate], FIRSTNONBLANK ( 'ADMIN Year Slicer'[Custom], 1 ) = "2016", [2016 Turnover Rate], FIRSTNONBLANK ( 'ADMIN Year Slicer'[Custom], 1 ) = "2017", [YTD Turnover Rate], BLANK () )
Regards
Hi @pierre415,
The VALUES function will return all the values of the 'ADMIN Year Slicer'[Custom] column if there is no any filter applied on it. So you may need to check if there is only one available value in current filter context first, then use VALUES('ADMIN Year Slicer'[Custom]) = "2015" within the SWITCH function in your scenario. The formula below is for your reference.
Measure Selection = IF ( HASONEVALUE ( 'ADMIN Year Slicer'[Custom] ), SWITCH ( TRUE (), VALUES ( 'ADMIN Year Slicer'[Custom] ) = "2015", [2015 Turnover Rate], VALUES ( 'ADMIN Year Slicer'[Custom] ) = "2016", [2016 Turnover Rate], VALUES ( 'ADMIN Year Slicer'[Custom] ) = "2017", [YTD Turnover Rate], BLANK () ) )
Or you can just use FIRSTNONBLANK function instead of VALUES function.
Measure Selection = SWITCH ( TRUE (), FIRSTNONBLANK ( 'ADMIN Year Slicer'[Custom], 1 ) = "2015", [2015 Turnover Rate], FIRSTNONBLANK ( 'ADMIN Year Slicer'[Custom], 1 ) = "2016", [2016 Turnover Rate], FIRSTNONBLANK ( 'ADMIN Year Slicer'[Custom], 1 ) = "2017", [YTD Turnover Rate], BLANK () )
Regards
It works thank you!
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
At the monthly call, connect with other leaders and find out how community makes your experience even better.
User | Count |
---|---|
400 | |
105 | |
68 | |
55 | |
49 |
User | Count |
---|---|
379 | |
118 | |
82 | |
67 | |
54 |