Forum Discussion

shivkonar's avatar
shivkonar
Frequent Visitor
8 years ago
Solved

Related Value from Slicer

Hi,

 

I have a table called 'Date Selection'. It has 2 columns, Week Number and Week Commencing

 

 

Now, in my report, I have a slicer which is based on 'Date Selection'[Week Commencing]. The use can only select 1 value.

 

When the user selects a value on the slicer, I want a measure which can store the related Week Number

 

Eg. User selects 'January 29, 2018', [MyMeasure] should be equal to 5

 

How would I do this?

  • Anonymous's avatar
    Anonymous
    8 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

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    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

    • shivkonar's avatar
      shivkonar
      Frequent Visitor
      Thank you, Anonymous .

      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?
      • Anonymous's avatar
        Anonymous
        Not applicable

        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