Forum Discussion

BarrilleauxAP's avatar
BarrilleauxAP
Regular Visitor
6 years ago
Solved

Two aggregations on the same table

I am new to Power BI although I have used other reporting packages. 

 

I have a single table that has two date columns, CreateDate & ShipDate.  What i am trying to acheive is a bar graph that shows a range of days calculating the net difference (each day) between the number (count) of records shipped minus the number (count) of records created.  The ShipDate is null until the record is shipped.  A sample of a few rows from the table is included below.

 

Thanks in advance for the help!

 

 

Sample of Table

  • I got this to work.  What i had to do was change the count function into calcuate and add UseRelationship.  All good!  Thanks for the help!

5 Replies

  • jthomson's avatar
    jthomson
    Solution Sage

    This sort of thing is easiest if you make a date table to use as your bar graph axis, then make an active relationship to the createdate and an inactive relationship to the shipdate. It's then just a case of two measures - one counting the rows, and another counting the rows using the alternative relationship. Take one from the other, job done

    • BarrilleauxAP's avatar
      BarrilleauxAP
      Regular Visitor

      I had tried that but i suspect there is an issue with the way i am counting the rows.  I am using COUNT(PickList[Create]) and COUNT(PickList[ShipDate]) however i get the same total for each date in the series.

    • BarrilleauxAP's avatar
      BarrilleauxAP
      Regular Visitor

      I created a new, seperate date table and pointed the two dates as you suggested and i an still seeing an aggregate that is the same for all days.

    • BarrilleauxAP's avatar
      BarrilleauxAP
      Regular Visitor

      I got this to work.  What i had to do was change the count function into calcuate and add UseRelationship.  All good!  Thanks for the help!