Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Finding first sum over 100

Hello All,   I have a Contributions table that has columns: AssetGroup, GiftAmount, FundID, and ID (gifts)   I need to find the sum of the first ID (gift) that is over $100 to a fund.   In our ...
  • parry2k's avatar
    parry2k
    7 years ago

    Anonymous oh i thought you need id, just change the measure

     

    First Id = 
    CALCULATE( [Gift Amount],  
    TOPN(1, FILTER( Table, [Gift Amount] > [Parameter Value] ), [Gift Amount], ASC )
    )