Forum Discussion

apurva989's avatar
apurva989
Frequent Visitor
5 years ago
Solved

First occurrence in a measure

Hi folks,

I've been scratching my head over this issue and read through multiple forum posts but nothing has helped me so far. Sample data below:

 

I have four fields here:

Index - unsummarized column from my source (column)

Wafer Sum = Summarized column

Cumulative Sum = Running total of Wafer Sum per Index column (Quick Measure)

Flag = Toggles between Yes and No based on following condition ( [Cumulative Sum] >= [Wafer Sum] * 0.5) (Measure)

 

What I'm trying to accomplish is get the first occurrence when the Flag = "Yes" and return the Index value. In this case, the Index value returned should be 25. However, I cant use most of the functions such as EARLIER, MINX or CALCULATE since they are catered towards columns and not measures.

 

Any help on this issue is appreciated. Thanks in advance!

  • apurva989 , based on this   ( if ([Cumulative Sum] >= [Wafer Sum], "Yes","No") ) ,  it should be like

     

    minx(filter(values(Table[Index]), [Cumulative Sum] >= [Wafer Sum] ), [index])

     

    You yes condition should be in the filter

4 Replies