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...
  • richbenmintz's avatar
    5 years ago

    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!