Forum Discussion

bhmiller89's avatar
bhmiller89
Helper V
9 years ago
Solved

Show Most Recent Date

I have a columns: Organization |NoteDate|Note   I need to write a measure that will display the most recent NoteDate for each Organization.  Each Organization has thousands upon thousands of notes ...
  • BetterCallFrank's avatar
    9 years ago

    1) create a measure MaxNoteDate = Max( Table[NoteDate] ) (or select default summarization = "MAX" for this column or select it in the visual)

    2) create a table visualisation and put Organization on columns

    3) put measure from 1) on the visual

     

    that should be it...?

     

    what's the problem with what you've got so far? can you show us some screenshots with your hurdles?

     

    HTH,

    Frank