Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Line Chart - show series only when one item selected

Hi All,   I am trying to plot a series of data in a line graph that only shows when I'm focussed on an individual event. I found this post - Visualisations blank until something selected in a slic...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    7 years ago

    Hi Anonymous,

     

    Try this measure, please. You don't need to change the "Cross Filter Direction" this time.

     

    Places (M) 2 =
    IF (
        ISFILTERED ( Courses[campaignid] ),
        SELECTEDVALUE ( Courses[Maximum Attendees] ),
        BLANK ()
    )
    

     

    Best Regards,
    Dale