Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Login:Action Completed Ratio Help

I am looking to create a ratio measure of how often someone completes a task when they login to the app (as opposed to just opening the app and not completing a task) -- or, put another way, the aver...
  • Greg_Deckler's avatar
    Greg_Deckler
    6 years ago

    Anonymous unsure of what you mean? I am assuming you are referring to this column?

     

    TasksCompleted = 
        VAR __User = [UserID]
    RETURN
        COUNTROWS(
            FILTER(
                ALL('Table2'),
                'Table2'[UserID] = __User &&
                    'Table2'[DateTimeCompleted] >= [DateTime] &&
                        'Table2'[DateTimeCompleted] <= [LogoutTime]
            )
        )

     

  • Anonymous's avatar
    Anonymous
    6 years ago

    I was able to figure it out, I believe, by using EARLIER ! Greg_Deckler