Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Maxx Function Filtering on two columns?

EDIT: For anyone that finds this on Google, the solution is, as the guy below said:   MaxInteractionStart = maxx( FILTER( Fact_Interaction, Fact_Interaction[InteractionID] =earlier(Fact_Interact...
  • Greg_Deckler's avatar
    4 years ago

    Anonymous Try:

    MaxInteractionStart = maxx(
    FILTER(
    Fact_Interaction,
    Fact_Interaction[InteractionID] =earlier(Fact_Interaction[InteractionID]) &&
    Fact_Interaction[InteractionRank] = <something goes here>
    ),
    Fact_Interaction[InteractionStartDate])