Forum Discussion

KhaledEid's avatar
KhaledEid
Frequent Visitor
4 years ago
Solved

Creating table from two tables using SUMMARIZE

I am trying to create a table with three columns (Full Name, Actual Hours, Contracted Hours)   I created the below measure Top Staff = VAR K= FILTER(HR_MonthlySalary, HR_MonthlySalary[Actual H...
  • v-yalanwu-msft's avatar
    4 years ago

    Hi, KhaledEid ;

    According to the official document,  KEEPFILTERS(<expression>) Any expression.

     however in your dax,  "K" is return a table ,not a expression . 

    so i think you could modify it.

    Top Staff =
    CALCULATETABLE (
        SUMMARIZE ( HR_Data_Final, HR_Data_Final[FullName] ),
        KEEPFILTERS ( HR_MonthlySalary[Actual Hours] > HR_MonthlySalary[Hours Contracted] )
    )
    

     

    Best Regards,
    Community Support Team_ Yalan Wu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.