Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
3 years ago

Display graph data with filter

Hello

I have a question regarding a Graph.

I want to make a Bar Chart with all the questions that the students answered in my survey, however, there are too many and the bar graph is not understood. What I would like is that the Graph is built from the filter you put, so that you can choose the group of questions you want to see.

How can I build the Graph so that, at the beginning it looks blank and is with the filter shows the data?

3 Replies

  • Hi Syndicate_Admin !
    In your measure you can try using the function ISFILTERED. So:

    IF(
        ISFILTERED( CategoryToFilter ),
        ValueToDisplay,
        BLANK()
    )

    Let me know if that helps!

  • Hello

    Thank you very much for your answer, I created the measure you recommended, however, I do not know how to enter it in the graph, since when I put it in the fields, the graph still appears.