Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

Average count from a column using dax

Hi,   I have two columns.   File_id        Attachment_id 1                  2123 1                  3423 1                  3423 2                  453 3                  12 4              ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    Anonymous wrote:

    Thiyagu It seems you have taken average of 'sum' of attachment_id. I just require 'averager count of attachment_id' per file_id

     

    For instance

     

    File_id      Attachment_id

    1                 4

    1                 3

    1                 34

    2                 323 

    2                 33

    3                 33

    3                 333

    4                 23

     

    Now in this case outcome should be: 8 ( unique attachment_id) / 4 (unique file ids) = 2 i.e on an average people add 2 attachments to a file.


    Anonymous,

    Based on the above sample data, you would need to create a measure using the DAX below.

    Measure = DIVIDE(COUNT(Table[Attachment_id]),DISTINCTCOUNT(Table[File_id]))

    Regards,