Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Force-Directed Graph Target Counts

I need to add counts to my target nodes, but cannot figure out how.  Love the line weights...but need target counts too.

 

  • Hi Anonymous ,

     

    According to your description, do you want to add the corresponding number of statistics in each node. But after my tests, it seems that for the Force-Directed Graph visual object there is no support for adding the created measure formula (number of statistical nodes).

    just like:

    M =
    CALCULATE (
        COUNTROWS ( 'Company communications' ),
        FILTER (
            ALL ( 'Company communications' ),
            MAX ( 'Company communications'[Source] ) = 'Company communications'[Source]
        )
    )

     


    Best Regards,
    Henry


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

1 Reply

  • v-henryk-mstf's avatar
    v-henryk-mstf
    Community Support

    Hi Anonymous ,

     

    According to your description, do you want to add the corresponding number of statistics in each node. But after my tests, it seems that for the Force-Directed Graph visual object there is no support for adding the created measure formula (number of statistical nodes).

    just like:

    M =
    CALCULATE (
        COUNTROWS ( 'Company communications' ),
        FILTER (
            ALL ( 'Company communications' ),
            MAX ( 'Company communications'[Source] ) = 'Company communications'[Source]
        )
    )

     


    Best Regards,
    Henry


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