Forum Discussion

Coryanthony's avatar
Coryanthony
Helper III
3 years ago
Solved

Help with calculation please

Hello, I am doing a project on employees, determining overtime meals $ submitted vs overtime meals $ allowed (based on work hours). Then looking to calculate the discrepancy (allowed minus submitted...
  • Gokul_G16's avatar
    Gokul_G16
    3 years ago

    Hi thx ,

    I will do one thing, Can please take 
    Distinct employee or just summarize the separate table 
    for unique employee code .
    post that fix over all 8 hrs per day wise count.
     else. you can concatenate the EMP & Date, by the way you can have it unquie count. $25.

    Dax. 
    Test = 
    VAR _V1 = CONCATENATE ( EMP , DATE)
    RETURN 
    CALCULATE ( SUM ( #hrs), _v1=_v1).

    Can you try this way,

    Thanks.
    Gokul