Forum Discussion

atziovara's avatar
atziovara
Helper I
2 years ago
Solved

Filters based on IDs

I have a table called 'TableBI' which stores the answers of multiple companies to multiple questions. It looks like this:

 

Company IDQuestionAnswer
1Current Demand0.3
1Future Demand0.2
1Current Labor0.4
1Future Labor0.5
2Current Demand0.5
2Future Demand0.4
2Current Labor0.3
2Future Labor0.2
3Current Demand0.3
3Future Demand0.3
3Current Labor0.6
3Future Labor0.7


I need to perform some calculations with the answers based on specific criteria. One of these criteria is that the Future Demand of the companies needs to be > 0.2.

Therefore, I would like to create either a new filtered table or a new column that will include ALL the Answers of ONLY the companies for which when [Question] = Future Demand, [Answer] > 0.2.

It should look like this:

Company IDQuestionAnswerFiltered Answer
1Current Demand0.3 
1Future Demand0.2 
1Current Labor0.4 
1Future Labor0.5 
2Current Demand0.50.5
2Future Demand0.40.4
2Current Labor0.30.3
2Future Labor0.20.2
3Current Demand0.30.3
3Future Demand0.30.3
3Current Labor0.60.6
3Future Labor0.70.7


This is very important, so thank you very much in advance!

  • hackcrr's avatar
    hackcrr
    2 years ago

    Hi, atziovara 

    Thank you very much for your reply. I have re-edited my DAX expression below:

    AnswerFiltered =
    VAR _table =
        SUMMARIZE (
            FILTER ( 'Table', 'Table'[Question] = "Future Demand" && 'Table'[Answer] > 0.2 ),
            'Table'[Company ID]
        )
    RETURN
        IF ( 'Table'[Company ID] IN _table, 'Table'[Answer] )

    The results are as follows:

     

    Best Regards,

    hackcrr

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.