Forum Discussion

SantiagoTorres's avatar
3 years ago
Solved

Average

Hi All, hope you're well,   Can you please help me with this? I'm trying to get the average site/visits per company, and I got the following measures.   Site  Visits = COUNTROWS(SUMMARIZE('3. Co...
  • ppm1's avatar
    ppm1
    3 years ago

    Please try this one instead.

     

    Avg Measure =
    AVERAGEX (
        VALUES ( T4[CoWComp] ),
        [Site Visits/day]
    )

     

    Pat