Forum Discussion

ZachRoberts's avatar
ZachRoberts
Frequent Visitor
5 years ago
Solved

Table not calculating sum correctly

Hello,

 

I have the below data and for some reason when I set the value of my Hours field below to Sum of Hours it doubles the data instead of giving a correct sum.

 

WorkerHoursDate
W0.014/29/2021
W1.614/29/2021
W1.674/29/2021
W7.644/29/2021

 

When I change Hours to Sum of Hours I get the below result

WorkerSum of HoursDate
W21.864/29/2021

 

The expected result is 10.93 but for some reason Power Bi appears to be doubling the values it is summing. 

 

Any help would be appreciated.

 

Thanks,

Zach 

 

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi ZachRoberts ,

     

    One reason is that there are duplicate identical rows. It will not display duplicate rows in Power BI. Please check whether there are duplicate rows in your data source table.

     

    The solution is to add an index column.

     

    Best Regards,

    Stephen Tao

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.v

10 Replies

  • Hi ZachRoberts !

     

    Pleae make sure you don't have any active relationship which are causing this. Please paste your Data Model diagram here.

     

    Regards,

    Hasham

    • ZachRoberts's avatar
      ZachRoberts
      Frequent Visitor

      HashamNiaz ,

       

      Thanks for the reply - Please see the below screenshots of the relationship

       

       

      Thanks,

      Zach 

      • HashamNiaz's avatar
        HashamNiaz
        Solution Sage

        Hi ZachRoberts !

         

        Please check by placing columns only from [JCT] table into table / matrix visual if you are able to get correct result for particular day.

         

        Regards,

        Hasham

  • Hi,

    Drag Worker to the Table visual and write this measure

    Hours worked = sum(Data[Hours])

    Hope this helps.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi ZachRoberts ,

     

    One reason is that there are duplicate identical rows. It will not display duplicate rows in Power BI. Please check whether there are duplicate rows in your data source table.

     

    The solution is to add an index column.

     

    Best Regards,

    Stephen Tao

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.v

    • ZachRoberts's avatar
      ZachRoberts
      Frequent Visitor

      Yea there does appear to be duplicate entries in our data - started with just my table of the hours and worked through it there to find the issue. Will work to fix why we have duplicate entries now haha 

       

      Thanks everyone for your help