Forum Discussion

JustinDoh1's avatar
JustinDoh1
Post Prodigy
1 year ago
Solved

Performance issue with AVERAGEX

I have a about 1.1 million rows of data with 7 columns.   I tried this measure called "Average" to filter my visual, PBI visual is having a big performance/memory issue.   Below is detail of that...
  • bhanu_gautam's avatar
    1 year ago

    JustinDoh1 Instead of using VALUES, you can use SUMMARIZE to create a summarized table that might perform better.

     

    Average =
    AVERAGEX(
    FILTER(
    SUMMARIZE(
    'TblCensus',
    DimDate[DateFormat],
    "ClientD_M1", [ClientD_M1]
    ),
    [ClientD_M1] > 0
    ),
    [ClientD_M1]
    )