Forum Discussion

Laszlo's avatar
Laszlo
Microsoft Employee
6 years ago
Solved

Report on multiple course completion

Hi all,    Here is the problem I am trying to solve and so far failed in PowerBI.    I have a lot of customers attending multiple workshops and there are 5 workshops in the course. I can create a...
  • AlB's avatar
    AlB
    6 years ago

     

    1. Create an aux table:

    AuxTable = GENERATESERIES(1,5) //Change the number of sessions to show  as required 

    2. Place AuxTable[Value] in the rows of a table visual 

    3. Create this measure and place it in the table visual:

    Measure =
    VAR CountT_ =
        ADDCOLUMNS (
            DISTINCT ( Table1[email] ),
            "CountCol", CALCULATE ( COUNT ( Table1[email] ) )
        )
    RETURN
        COUNTROWS (
            FILTER ( CountT_, [CountCol] = SELECTEDVALUE ( AuxTable[Value] ) )
        )

     

    Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.

    Cheers  Datanaut

  • AlB's avatar
    AlB
    6 years ago

    Laszlo 

    AuxTable_ is used as base to show 1,2,...,5  in the visual and to slice on that. 

    The measure first builds the table (CountT_) that you were showing internally and secondly,  counts how many rows there are in CountT_  with the number specified on the row of the visual (1,2,...,5) 

     

    CountT_ looks like this internally 

    email Count of session
    [email protected] 1
    [email protected] 2
    [email protected] 3
    [email protected] 5
    [email protected] 1
    [email protected] 5
    [email protected] 1
    [email protected] 5
    [email protected] 1
    [email protected] 1
    [email protected] 2
    [email protected] 2

     

     

    Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.

    Cheers  Datanaut