Forum Discussion

comish4lif's avatar
comish4lif
Helper II
8 years ago
Solved

Cumulative Count by Date

I have looked at 47 different formula posted here and cannot figure this out.   I have a Sharepoint list that tracks workflow items and I am trying to create a Cumulative Monthly count by the Creat...
  • v-chuncz-msft's avatar
    v-chuncz-msft
    8 years ago

    comish4lif,

     

    You may refer to measure below.

    Measure =
    CALCULATE (
        COUNT ( 'Production Approval Workflow'[RowNumber] ),
        FILTER (
            ALLSELECTED ( 'Production Approval Workflow' ),
            'Production Approval Workflow'[Created] <= MAX ( 'CalendarTable'[Date] )
        )
    )