Forum Discussion

AltGr9's avatar
AltGr9
Helper I
4 years ago
Solved

Applying MAX to Summerize

Hello all, I have a summerize statement that returns a count of rows by date, and I'm trying to find the max date with a count greater than 10. 
 
Here is what I have so far, but it doesn't want to accept _s[Count].  Any help would be appreciated.
 

 

 

Max Date With Count Greater Than 10 =
VAR _s = SUMMARIZE
( 
 'Fact Table'
,'Fact Table'[Date]
,"Count", COUNT('Fact Table'[Date])
)
RETURN
CALCULATE( MAXX(_s, [Date]), _s[Count] > 10 )

 

 

  • Hi,

    Please check the below picture.

    One thing that I want to share is, try to use addcolumns & summarize functions together, instead of using only summarize when adding expressions to the virtual summarized table.

    The reason is that, not very often happen in general cases, but in some cases (in fact, quite a lot...), if authors use only summarize function and add expressions into the virtual summarized table, there might be an issue in creating correct numbers and having a good performance.

     

     

    Max Date With Count Greater Than 10 =
    VAR _s =
    FILTER (
    ADDCOLUMNS (
    SUMMARIZE ( 'Fact Table', 'Fact Table'[Date] ),
    "Count", CALCULATE ( COUNT ( 'Fact Table'[Date] ) )
    ),
    [Count] > 10
    )
    RETURN
    MAXX ( _s, 'Fact Table'[Date] )

7 Replies

  • Hi,

    Please check the below picture.

    One thing that I want to share is, try to use addcolumns & summarize functions together, instead of using only summarize when adding expressions to the virtual summarized table.

    The reason is that, not very often happen in general cases, but in some cases (in fact, quite a lot...), if authors use only summarize function and add expressions into the virtual summarized table, there might be an issue in creating correct numbers and having a good performance.

     

     

    Max Date With Count Greater Than 10 =
    VAR _s =
    FILTER (
    ADDCOLUMNS (
    SUMMARIZE ( 'Fact Table', 'Fact Table'[Date] ),
    "Count", CALCULATE ( COUNT ( 'Fact Table'[Date] ) )
    ),
    [Count] > 10
    )
    RETURN
    MAXX ( _s, 'Fact Table'[Date] )
  • Hi,

    I am not sure how the measure operates without seeing the actual sample file. However, what I can suggest based on what I see is that, inside VAR in your measure, you can try to filter _s table first, and then write RETURN MAXX(..... 

    If you can share your sample pbix file's link, it will be helpful.

    Thank you.

  • v-robertq-msft's avatar
    v-robertq-msft
    Community Support

    Hi, AltGr9 

    Have you followed the DAX formula posted by Jihwan_Kim to find the solution to your problem?

    If so, would you like to mark his reply as a solution so that others can learn from it too?

     

    Thanks in advance!

    How to Get Your Question Answered Quickly 

     

    Best Regards,

    Community Support Team _Robert Qin

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