Forum Discussion

PavanSateesh's avatar
PavanSateesh
New Member
9 years ago
Solved

Need Help in building dax formula

Hello Fellas,   Could you please help me in building Dax formula for identifiying No of meetings conducted with full attendance in my data set.   I am blank here as to how can i do this... My dat...
  • v-huizhn-msft's avatar
    9 years ago

    Hi PavanSateesh,

    Based on my understanding, please create a calculated column using the formula.

    Flag =
    IF (
        CALCULATE ( COUNT ( Table[MeetingID] ), ALLEXCEPT ( Table, Table[MeetingID] ) )
            = CALCULATE (
                COUNT ( Table[MeetingID] ),
                FILTER ( ALLEXCEPT ( Table, Table[MeetingID] ), Table[Attendance] = "Y" )
            ),
        1,
        0
    )


    If the Flag is 1, it means the Meeting is full attendance. So you can create a slicer including Flag, a table visual including all Meeting IDs, when you select 1 in slicer, you will get all the No of Meetings with full attendance.

    Best Regards,
    Angelia