Forum Discussion
Related Value from Slicer
- Anonymous8 years ago
Hi shivkonar
You can create the desired measure with the following code:
Measure = MAX('Date Selection'[Week Number])When the user selects a Week Commencing, the measure will return the specific Week Number associated with that selection. If you wanted to set a default value when no Week Commencing selection is made, that would just take a little more code.
Hope this helps,
Parker
That's a good point you raised about default value. I guess I can use TODAY() to get the today's date and then calculate the week commencing and then with IF and COUNTROWS I can set the default week selected to current week?
shivkonar Yep you're definitely on the right track. Whenever I am setting a default value I use this code:
IF(
COUNTROWS(DISTINCT(ALLSELECTED('Table'[Column])))
= COUNTROWS(DISTINCT(ALL('Table'[Column]))),
[Default Value],
[Non-Default Value]
)There may be an easier way to do this but you are basically seeing if the number of rows in your selection is the same as the number of rows of the full table. If yes, then either no selection has been made or all of the options have been selected in which case you can use a default value.
Hope that makes sense,
Parker