Forum Discussion

Greg888's avatar
Greg888
Helper I
4 years ago
Solved

Getting a max step from a group

Hi All   I have what I think could be a fairly simply problem to solve but I have been going around and around in circles to try to get the answer and now I'm just stuck or not understanding why th...
  • CNENFRNL's avatar
    4 years ago
    MaxStepNo =
    MAXX(
        FILTER(
            'Document Steps',
            'Document Steps'[DocNumber] = EARLIER( 'Document Steps'[DocNumber] )
        ),
        'Document Steps'[StepNo]
    )