Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Semi-aggregated measures

I have two measures - "Login" and "Logout" in a matrix table to display the log in time and the log out time by employee and by date.

 

login = CALCULATE(Min(table1[STARTTIME_CALC])
,filter(table1,table1[PRIMARY_STATUS]="AVAILABLE"))
 logout = CALCULATE(
        max(table1[STARTTIME]) 
,FILTER(table1,table1[PRIMARY_STATUS]="OFFLINE"))

 

 

However, I don't want the login and logout values to be displayed at the emplyee level in the table. Both make sense only if they are by employee AND by date.

 

My question is how to modify the login and logout measure so that they dont return a value at the employee row in the matrix table.

 

  • Hi Anonymous,

     

    You can use the HASONEVALUE function to control this see the following forumula example

    measure =
    switch(true(),
    hasonevalue('table'[user]) && not(hasonevalue('table'[date]), blank(),
    hasonevalue('table'[user]) && hasonevalue('table'[date]), [measure],
    , blank())

    Hope this Helps,
    Richard
    Did I answer your question? Mark my post as a solution!
    Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

2 Replies

  • richbenmintz's avatar
    richbenmintz
    Icon for Resident Rockstar rankResident Rockstar

    Hi Anonymous,

     

    You can use the HASONEVALUE function to control this see the following forumula example

    measure =
    switch(true(),
    hasonevalue('table'[user]) && not(hasonevalue('table'[date]), blank(),
    hasonevalue('table'[user]) && hasonevalue('table'[date]), [measure],
    , blank())

    Hope this Helps,
    Richard
    Did I answer your question? Mark my post as a solution!
    Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!